Home | History | Annotate | Download | only in browser

Lines Matching refs:url

157     Tab createNewTab(boolean closeOnExit, String appId, String url) {
166 Tab t = new Tab(mActivity, w, closeOnExit, appId, url);
175 * appId(null), and url(null).
306 // Need to maintain the app id and original url so we
449 // matches the given url.
450 private boolean tabMatchesUrl(Tab t, String url) {
457 } else if (url.equals(webview.getUrl())
458 || url.equals(webview.getOriginalUrl())) {
465 * Return the tab that has no app id associated with it and the url of the
466 * tab matches the given url.
467 * @param url The url to search for.
469 Tab findUnusedTabWithUrl(String url) {
470 if (url == null) {
475 if (t != null && tabMatchesUrl(t, url)) {
482 if (tabMatchesUrl(t, url)) {
495 final String url = urlData.mUrl;
498 if (url != null && url.equals(t.getOriginalUrl())
499 // Treat a voice intent as though it is a different URL,
502 // The original url matches the current url. Just go back to the
523 // Save the new url in order to avoid deleting the WebView.
524 t.setOriginalUrl(url);