Home | History | Annotate | Download | only in browser

Lines Matching refs:url

61     boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url) {
68 if (url.startsWith(SCHEME_WTAI)) {
71 if (url.startsWith(SCHEME_WTAI_MC)) {
74 url.substring(SCHEME_WTAI_MC.length())));
78 // url, we would like to close it as we will load this url in a
85 if (url.startsWith(SCHEME_WTAI_SD)) {
92 if (url.startsWith(SCHEME_WTAI_AP)) {
100 if (url.startsWith("about:")) {
107 Uri siteUri = Uri.parse(url);
110 // AsyncTask. Although we are not overriding the URL load synchronously,
111 // we guarantee that we will handle this URL load after the task executes,
118 if (startActivityForUrl(tab, url)) {
122 if (handleMenuClick(tab, url)) {
129 boolean startActivityForUrl(Tab tab, String url) {
133 intent = Intent.parseUri(url, Intent.URI_INTENT_SCHEME);
135 Log.w("Browser", "Bad URI " + url + ": " + ex.getMessage());
150 // url, we would like to close it as we will load this url in a
173 Matcher m = UrlUtils.ACCEPTED_URI_SCHEMA.matcher(url);
181 // url, we would like to close it as we will load this url in a
187 // ignore the error. If no application can handle the URL,
195 * Search for intent handlers that are specific to this URL
223 boolean handleMenuClick(Tab tab, String url) {
225 mController.openTab(url,
272 // If the Activity Manager is not invoked, load the URL directly