2012-07-13 11:06:24 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
|
|
|
|
2012-07-17 17:54:54 -07:00
|
|
|
class AwesomebarResultHandler implements ActivityResultHandler {
|
2012-07-13 11:06:24 -07:00
|
|
|
private static final String LOGTAG = "GeckoAwesomebarResultHandler";
|
|
|
|
|
|
|
|
public void onActivityResult(int resultCode, Intent data) {
|
|
|
|
if (data != null) {
|
|
|
|
String url = data.getStringExtra(AwesomeBar.URL_KEY);
|
|
|
|
AwesomeBar.Target target = AwesomeBar.Target.valueOf(data.getStringExtra(AwesomeBar.TARGET_KEY));
|
|
|
|
String searchEngine = data.getStringExtra(AwesomeBar.SEARCH_KEY);
|
|
|
|
boolean userEntered = data.getBooleanExtra(AwesomeBar.USER_ENTERED_KEY, false);
|
|
|
|
if (url != null && url.length() > 0)
|
|
|
|
GeckoApp.mAppContext.loadRequest(url, target, searchEngine, userEntered);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|