HomeSort by relevance Sort by last modified time
    Searched refs:GURL (Results 76 - 100 of 5716) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/net/proxy/
proxy_bypass_rules_unittest.cc 24 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com")));
25 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99")));
26 EXPECT_TRUE(rules.Matches(GURL("https://www.google.com:81")));
29 EXPECT_FALSE(rules.Matches(GURL("http://foo.www.google.com")));
30 EXPECT_FALSE(rules.Matches(GURL("http://xxx.google.com")));
31 EXPECT_FALSE(rules.Matches(GURL("http://google.com")));
32 EXPECT_FALSE(rules.Matches(GURL("http://www.google.com.baz.org")));
44 EXPECT_TRUE(rules.Matches(GURL("http://www.google.com")));
45 EXPECT_TRUE(rules.Matches(GURL("ftp://www.google.com:99")));
46 EXPECT_TRUE(rules.Matches(GURL("https://a.google.com:81")))
    [all...]
  /external/chromium_org/webkit/browser/quota/
mock_special_storage_policy.h 11 #include "url/gurl.h"
20 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE;
21 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE;
22 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE;
23 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE;
25 virtual bool HasIsolatedStorage(const GURL& origin) OVERRIDE;
28 void AddProtected(const GURL& origin) {
32 void AddUnlimited(const GURL& origin) {
36 void RemoveUnlimited(const GURL& origin) {
40 void AddSessionOnly(const GURL& origin)
    [all...]
  /external/chromium_org/chrome/browser/signin/
signin_promo.h 12 class GURL;
52 GURL GetLandingURL(const char* option, int value);
60 GURL GetPromoURL(Source source, bool auto_close);
61 GURL GetPromoURL(Source source, bool auto_close, bool is_constrained);
64 GURL GetNextPageURLForPromoURL(const GURL& url);
68 Source GetSourceForPromoURL(const GURL& url);
71 bool IsAutoCloseEnabledInURL(const GURL& url);
76 bool IsContinueUrlForWebBasedSigninFlow(const GURL& url);
  /external/chromium/chrome/browser/notifications/
notifications_prefs_cache_unittest.cc 14 std::vector<GURL> allowed_origins;
15 allowed_origins.push_back(GURL("http://allowed.com"));
16 std::vector<GURL> denied_origins;
17 denied_origins.push_back(GURL("http://denied.com"));
34 cache->CacheAllowedOrigin(GURL("http://allowed2.com"));
35 cache->CacheDeniedOrigin(GURL("http://denied2.com"));
37 EXPECT_EQ(cache->HasPermission(GURL("http://allowed.com")),
39 EXPECT_EQ(cache->HasPermission(GURL("http://allowed2.com")),
42 EXPECT_EQ(cache->HasPermission(GURL("http://denied.com")),
44 EXPECT_EQ(cache->HasPermission(GURL("http://denied2.com"))
    [all...]
  /external/chromium_org/chrome/browser/notifications/
notification.h 19 #include "url/gurl.h"
28 Notification(const GURL& origin_url,
29 const GURL& content_url,
36 Notification(const GURL& origin_url,
37 const GURL& icon_url,
47 Notification(const GURL& origin_url,
58 const GURL& origin_url,
77 const GURL& content_url() const { return content_url_; }
80 const GURL& origin_url() const { return origin_url_; }
83 const GURL& icon_url() const { return icon_url_;
    [all...]
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.h 12 #include "googleurl/src/gurl.h"
20 const GURL& url,
25 GURL TranslateUrl(const GURL& url);
32 GURL url() const { return url_;}
39 const GURL& url,
42 const GURL url_;
  /external/chromium/chrome/browser/webdata/
web_apps_table.h 13 class GURL;
39 bool SetWebAppImage(const GURL& url, const SkBitmap& image);
40 bool GetWebAppImages(const GURL& url, std::vector<SkBitmap>* images);
42 bool SetWebAppHasAllImages(const GURL& url, bool has_all_images);
43 bool GetWebAppHasAllImages(const GURL& url);
45 bool RemoveWebApp(const GURL& url);
  /external/chromium_org/chrome/browser/extensions/
mock_extension_special_storage_policy.h 12 #include "url/gurl.h"
22 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE;
23 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE;
24 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE;
25 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE;
29 void AddProtected(const GURL& origin) {
36 std::set<GURL> protected_;
  /external/chromium_org/content/browser/streams/
stream_registry.h 14 #include "url/gurl.h"
31 bool CloneStream(const GURL& url, const GURL& src_url);
33 void UnregisterStream(const GURL& url);
42 bool UpdateMemoryUsage(const GURL& url, size_t current_size, size_t increase);
46 scoped_refptr<Stream> GetStream(const GURL& url);
53 typedef std::map<GURL, scoped_refptr<Stream> > StreamMap;
  /external/chromium/net/http/
http_auth_filter_unittest.cc 9 #include "googleurl/src/gurl.h"
31 GURL url;
38 { GURL(""),
40 { GURL("http://foo.cn"),
42 { GURL("http://foo.cn"),
44 { GURL("http://slashdot.org"),
46 { GURL("http://www.google.com"),
48 { GURL("http://www.google.com"),
50 { GURL("https://login.facebook.com/login.php?login_attempt=1"),
52 { GURL("http://codereview.chromium.org/634002/show")
    [all...]
  /external/chromium_org/net/http/
http_auth_filter_unittest.cc 11 #include "url/gurl.h"
31 GURL url;
38 { GURL(std::string()), HttpAuth::AUTH_NONE, false, 0 },
39 { GURL("http://foo.cn"), HttpAuth::AUTH_PROXY, true, ALL_SERVERS_MATCH },
40 { GURL("http://foo.cn"), HttpAuth::AUTH_SERVER, false, 0 },
41 { GURL("http://slashdot.org"), HttpAuth::AUTH_NONE, false, 0 },
42 { GURL("http://www.google.com"), HttpAuth::AUTH_SERVER, true, 1 << 0 },
43 { GURL("http://www.google.com"), HttpAuth::AUTH_PROXY, true,
45 { GURL("https://login.facebook.com/login.php?login_attempt=1"),
47 { GURL("http://codereview.chromium.org/634002/show"), HttpAuth::AUTH_SERVER
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_notification_provider.h 18 class GURL;
29 static ContentSettingsPattern ToContentSettingsPattern(const GURL& origin);
31 static GURL ToGURL(const ContentSettingsPattern& pattern);
42 const GURL& requesting_url,
43 const GURL& embedding_url,
78 std::vector<GURL> GetAllowedOrigins() const;
81 std::vector<GURL> GetBlockedOrigins() const;
84 void GrantPermission(const GURL& origin);
85 void DenyPermission(const GURL& origin);
87 void PersistPermissionChange(const GURL& origin, bool is_allowed)
    [all...]
  /external/chromium_org/content/browser/frame_host/
debug_urls.cc 16 #include "url/gurl.h"
22 void HandlePpapiFlashDebugURL(const GURL& url) {
24 bool crash = url == GURL(kChromeUIPpapiFlashCrashURL);
40 bool HandleDebugURL(const GURL& url, PageTransition transition) {
51 if (url == GURL(kChromeUIGpuCleanURL)) {
58 if (url == GURL(kChromeUIGpuCrashURL)) {
65 if (url == GURL(kChromeUIGpuHangURL)) {
72 if (url == GURL(kChromeUIPpapiFlashCrashURL) ||
73 url == GURL(kChromeUIPpapiFlashHangURL)) {
82 bool IsRendererDebugURL(const GURL& url)
    [all...]
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_url.cc 18 #include "url/gurl.h"
34 GURL cloud_print_url(
37 cloud_print_url = GURL(kDefaultCloudPrintServiceURL);
42 GURL gaia_url(GaiaUrls::GetInstance()->service_login_url());
56 GURL CloudPrintURL::GetCloudPrintServiceURL() {
58 return GURL(profile_->GetPrefs()->GetString(prefs::kCloudPrintServiceURL));
61 GURL CloudPrintURL::GetCloudPrintSigninURL() {
63 GURL cloud_print_signin_url(
68 GURL CloudPrintURL::GetCloudPrintServiceDialogURL() {
69 GURL cloud_print_service_url = GetCloudPrintServiceURL()
    [all...]
  /external/chromium/chrome/browser/extensions/
convert_user_script.h 15 class GURL;
25 const FilePath& user_script, const GURL& original_url, std::string* error);
  /external/chromium/chrome/browser/instant/
instant_confirm_dialog.h 11 class GURL;
17 GURL InstantLearnMoreURL();
  /external/chromium/chrome/browser/net/
browser_url_util.h 11 class GURL;
20 void WriteURLToClipboard(const GURL& url,
view_blob_internals_job_factory.h 14 class GURL;
18 static bool IsSupportedURL(const GURL& url);
view_http_cache_job_factory.h 14 class GURL;
18 static bool IsSupportedURL(const GURL& url);
  /external/chromium/chrome/browser/
page_info_window.h 13 class GURL;
19 const GURL& url,
  /external/chromium/chrome/browser/ui/cocoa/
external_protocol_dialog.h 8 #include "googleurl/src/gurl.h"
13 GURL url_;
17 - (id)initWithGURL:(const GURL*)url;
  /external/chromium/chrome/common/
content_settings_helper_unittest.cc 8 #include "googleurl/src/gurl.h"
13 const GURL kUrl0("http://www.foo.com/bar");
14 const GURL kUrl1("http://foo.com/bar");
16 const GURL kUrl2("http://www.foo.com:81/bar");
17 const GURL kUrl3("http://foo.com:81/bar");
20 const GURL kUrl4("https://www.foo.com/bar");
21 const GURL kUrl5("https://foo.com/bar");
23 const GURL kUrl6("https://www.foo.com:81/bar");
24 const GURL kUrl7("https://foo.com:81/bar");
  /external/chromium/chrome/common/net/gaia/
google_service_auth_error.h 28 #include "googleurl/src/gurl.h"
83 Captcha(const std::string& t, const GURL& img, const GURL& unlock);
85 GURL image_url; // The CAPTCHA image to show the user.
86 GURL unlock_url; // Pretty unlock page containing above captcha.
102 const GURL& captcha_image_url,
103 const GURL& captcha_unlock_url);
123 const GURL& captcha_image_url,
124 const GURL& captcha_unlock_url);
  /external/chromium/net/base/
cookie_store.h 20 class GURL;
31 virtual bool SetCookieWithOptions(const GURL& url,
39 virtual std::string GetCookiesWithOptions(const GURL& url,
43 virtual void DeleteCookie(const GURL& url,
54 bool SetCookie(const GURL& url, const std::string& cookie_line);
57 std::string GetCookies(const GURL& url);
60 void SetCookiesWithOptions(const GURL& url,
63 void SetCookies(const GURL& url,
data_url.h 11 class GURL;
45 static bool Parse(const GURL& url,

Completed in 860 milliseconds

1 2 34 5 6 7 8 91011>>