HomeSort by relevance Sort by last modified time
    Searched defs:url (Results 26 - 50 of 1719) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/
webstore_installer_unittest.cc 27 GURL url = WebstoreInstaller::GetWebstoreInstallURL(id, local
29 std::string query = url.query();
  /external/chromium_org/chrome/browser/
fast_shutdown_browsertest.cc 46 GURL url = test_server()->GetURL("files/fast_shutdown/on_unloader.html"); local
47 EXPECT_EQ("", content::GetCookies(browser()->profile(), url));
53 browser(), url, NEW_FOREGROUND_TAB, ui_test_utils::BROWSER_TEST_NONE); local
72 EXPECT_EQ("unloaded=ohyeah", content::GetCookies(browser()->profile(), url));
  /external/chromium_org/chrome/browser/tab_contents/
view_source_browsertest.cc 20 #include "url/gurl.h"
37 GURL url(content::kViewSourceScheme + std::string(":") +
39 ui_test_utils::NavigateToURL(browser(), url); local
50 // URL) if the URL was not changed (apart from adding the view-source prefix)
55 GURL url(embedded_test_server()->GetURL(kTestHtml));
56 ui_test_utils::NavigateToURL(browser(), url); local
58 // Then we navigate to the same url but with the "view-source:" prefix.
60 url.spec());
63 // The URL should still be prefixed with "view-source:"
75 ui_test_utils::NavigateToURL(browser(), url); local
86 ui_test_utils::NavigateToURL(browser(), url); local
    [all...]
  /external/chromium_org/chrome/browser/ui/
protocol_dialog_delegate.h 9 #include "url/gurl.h"
17 explicit ProtocolDialogDelegate(const GURL& url) : url_(url) {}
23 virtual void DoAccept(const GURL& url, bool dont_block) const = 0;
28 virtual void DoCancel(const GURL& url, bool dont_block) const = 0;
34 const GURL& url() const { return url_; } function in class:ProtocolDialogDelegate
  /external/chromium_org/chrome/browser/ui/startup/
startup_tab.h 11 #include "url/gurl.h"
18 // The url to load.
19 GURL url; member in struct:StartupTab
  /external/chromium_org/chrome/browser/ui/webui/
bookmarks_ui_browsertest.cc 34 GURL url; local
  /external/chromium_org/chrome/utility/importer/
bookmarks_file_importer_unittest.cc 8 #include "url/gurl.h"
12 bool CanImportURL(const GURL& url);
18 const std::string url; member in struct:TestCase
41 internal::CanImportURL(GURL(test_cases[i].url)));
  /external/chromium_org/content/browser/download/
download_create_info.cc 42 " url = \"%s\""
47 url().spec().c_str(),
52 const GURL& DownloadCreateInfo::url() const { function in class:content::DownloadCreateInfo
  /external/chromium_org/content/public/browser/
favicon_status.h 10 #include "url/gurl.h"
22 // The URL of the favicon which was used to load it off the web.
23 GURL url; member in struct:content::FaviconStatus
27 // loaded asynchronously, so even if the favicon URL is valid we may return
  /external/chromium_org/content/public/common/
speech_recognition_grammar.h 20 : url(url_value),
24 : url(url_value),
28 std::string url; member in struct:content::SpeechRecognitionGrammar
  /external/chromium_org/content/test/
content_browser_test_test.cc 32 GURL url = GetTestUrl(".", "simple_page.html"); local
36 NavigateToURL(shell(), url); local
  /external/chromium_org/net/url_request/
url_request_data_job.cc 23 // Check if data URL is valid. If not, don't bother to try to extract data.
24 // Otherwise, parse the data from the data URL.
25 const GURL& url = request_->url(); local
26 if (!url.is_valid())
28 return DataURL::Parse(url, mime_type, charset, data)? OK: ERR_INVALID_URL;
  /external/chromium_org/remoting/host/setup/
oauth_helper_unittest.cc 64 std::string url = GetTestRedirectUrl() + "?code=Dummy"; local
65 url = Replace(url, "https:", "http");
66 ASSERT_EQ("", GetOauthCodeInUrl(url, GetTestRedirectUrl()));
70 std::string url = GetTestRedirectUrl() + "?code=Dummy"; local
71 url = Replace(url, "google", "goggle");
72 ASSERT_EQ("", GetOauthCodeInUrl(url, GetTestRedirectUrl()));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTablePartElement.cpp 54 String url = stripLeadingAndTrailingHTMLSpaces(value); local
55 if (!url.isEmpty())
56 style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document().completeURL(url).string())));
  /external/chromium_org/third_party/WebKit/Source/platform/
SerializedResource.h 41 KURL url; member in struct:WebCore::SerializedResource
45 SerializedResource(const KURL& url, const String& mimeType, PassRefPtr<SharedBuffer> data)
46 : url(url)
  /external/chromium_org/third_party/WebKit/public/web/
WebPageSerializer.h 50 WebURL url; member in struct:blink::WebPageSerializer::Resource
WebScriptSource.h 41 WebURL url; member in struct:blink::WebScriptSource
46 WebScriptSource(const WebString& code, const WebURL& url)
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
49 : code(code), url(url), startLine(startLine) { }
  /libcore/luni/src/main/java/libcore/net/url/
FtpHandler.java 18 package libcore.net.url;
22 import java.net.URL;
28 * Open a URLConnection on the given URL.
31 protected URLConnection openConnection(URL u) throws IOException {
37 * to the FTP server specified by this <code>URL</code>. If
41 * @param url
42 * the URL which the connection is pointing to
45 * @return a connection to the resource pointed by this url.
55 protected URLConnection openConnection(URL url, Proxy proxy) throws IOException
    [all...]
  /libcore/luni/src/test/java/libcore/net/url/
UrlUtilsTest.java 17 package libcore.net.url;
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
UrlIntentListener.java 27 * A listener which expects a URL as a tag of the view it is associated with. It then opens the URL
33 final String url = view.getTag().toString(); local
34 final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification.cc 19 std::string url = web_ui_util::GetImageDataUrlFromResource(icon_resource_id); local
20 DCHECK(!url.empty());
21 GURL tmp_gurl(url);
  /external/chromium/chrome/browser/
crash_recovery_browsertest.cc 34 // The title of the active tab should change each time this URL is loaded.
35 GURL url(
37 ui_test_utils::NavigateToURL(browser(), url); local
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.cc 11 const GURL& url,
14 url_(url),
20 const GURL& url,
24 return new ProtocolHandler(lower_protocol, url, title);
29 std::string protocol, url; local
32 value->GetString("url", &url);
34 return ProtocolHandler::CreateProtocolHandler(protocol, GURL(url), title);
37 GURL ProtocolHandler::TranslateUrl(const GURL& url) {
40 EscapeQueryParamValue(url.spec(), true))
    [all...]
protocol_handler.h 14 // A single tuple of (protocol, url, title) that indicates how URLs of the
20 const GURL& url,
24 // Interpolates the given URL into the URL template of this handler.
25 GURL TranslateUrl(const GURL& url);
32 GURL url() const { return url_;} function in class:ProtocolHandler
39 const GURL& url,
  /external/chromium/chrome/browser/extensions/
all_urls_apitest.cc 38 std::string url; local
41 url = "chrome://newtab/";
42 ExtensionTestMessageListener listener1a("content script: " + url, false);
43 ExtensionTestMessageListener listener1b("execute: " + url, false);
44 ui_test_utils::NavigateToURL(browser(), GURL(url));
49 url = "data:text/html;charset=utf-8,<html>asdf</html>";
50 ExtensionTestMessageListener listener2a("content script: " + url, false);
51 ExtensionTestMessageListener listener2b("execute: " + url, false);
52 ui_test_utils::NavigateToURL(browser(), GURL(url));
57 url = "about:version"
    [all...]

Completed in 495 milliseconds

12 3 4 5 6 7 8 91011>>