HomeSort by relevance Sort by last modified time
    Searched refs:GetCookies (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium/chrome/browser/net/
cookie_policy_browsertest.cc 34 GetCookies(url_);
51 std::string GetCookies(const GURL& url) {
78 std::string cookie = GetCookies(url);
83 cookie = GetCookies(url);
108 std::string cookie = GetCookies(redirected_url);
116 cookie = GetCookies(redirected_url);
  /external/chromium_org/net/cookies/
cookie_store_unittest.h 88 std::string GetCookies(CookieStore* cs, const GURL& url) {
209 std::string cookies = GetCookies(cs, url);
217 cookies = GetCookies(cs, url);
256 this->MatchCookieLines("A=B", this->GetCookies(cs.get(), this->url_google_));
260 this->GetCookies(cs.get(), this->url_google_));
265 "C=D", this->GetCookies(cs.get(), GURL("http://foo.www.google.izzle")));
271 this->GetCookies(cs.get(), this->url_google_));
278 this->GetCookies(cs.get(), this->url_google_));
284 this->GetCookies(cs.get(), GURL("http://a.izzle")));
289 this->GetCookies(cs.get(), GURL("http://bla.www.google.izzle")))
    [all...]
cookie_monster_perftest.cc 80 const std::string& GetCookies(CookieMonster* cm, const GURL& gurl) {
142 getCookiesCallback.GetCookies(cm.get(), GURL(kGoogleURL));
175 getCookiesCallback.GetCookies(cm.get(), *it);
229 std::string cookie_line = getCookiesCallback.GetCookies(cm.get(), probe_gurl);
234 getCookiesCallback.GetCookies(cm.get(), probe_gurl);
270 cookie_line = getCookiesCallback.GetCookies(cm.get(), probe_gurl);
274 getCookiesCallback.GetCookies(cm.get(), probe_gurl);
308 getCookiesCallback.GetCookies(cm.get(), gurl);
cookie_monster_unittest.cc 425 std::string cookies = this->GetCookies(cm.get(), url_google_);
444 std::string cookies_general = this->GetCookies(cm.get(), url_google_);
447 this->GetCookies(cm.get(), url_google_specific);
455 std::string cookies_general = this->GetCookies(cm.get(), url_google_);
457 this->GetCookies(cm.get(), url_google_specific);
530 std::string cookie_str = this->GetCookies(cm, url_google_);
692 // TODO(erikwright): When the synchronous helpers 'GetCookies' etc. are removed,
    [all...]
  /external/chromium_org/chrome/browser/net/
cookie_policy_browsertest.cc 40 std::string cookie = content::GetCookies(browser()->profile(), url);
45 cookie = content::GetCookies(browser()->profile(), url);
71 content::GetCookies(browser()->profile(), redirected_url);
79 cookie = content::GetCookies(browser()->profile(), redirected_url);
  /external/chromium_org/chrome/browser/
fast_shutdown_browsertest.cc 47 EXPECT_EQ("", content::GetCookies(browser()->profile(), url));
72 EXPECT_EQ("unloaded=ohyeah", content::GetCookies(browser()->profile(), url));
unload_browsertest.cc 450 std::string GetCookies(const char* name) {
453 return content::GetCookies(contents->GetBrowserContext(), GetUrl(name));
492 EXPECT_EQ("", GetCookies("no_listeners"));
516 EXPECT_EQ("unloaded=ohyeah", GetCookies("no_listeners"));
526 EXPECT_EQ("", GetCookies("unload_sleep_before_cookie"));
542 EXPECT_EQ("unloaded=ohyeah", GetCookies("no_listeners"));
555 EXPECT_EQ("", GetCookies("no_listeners"));
571 EXPECT_EQ("unloaded=ohyeah", GetCookies("no_listeners"));
589 EXPECT_EQ("", GetCookies("no_listeners"));
  /external/chromium/net/base/
cookie_monster_unittest.cc 374 EXPECT_EQ("A=B", cm->GetCookies(url_google));
376 EXPECT_EQ("A=B; C=D", cm->GetCookies(url_google));
380 EXPECT_EQ("C=D", cm->GetCookies(GURL("http://foo.www.google.izzle")));
384 EXPECT_EQ("A=B; C=D; E=F", cm->GetCookies(url_google));
389 EXPECT_EQ("A=B; C=D; E=F; G=H", cm->GetCookies(url_google));
393 EXPECT_EQ("", cm->GetCookies(GURL("http://a.izzle")));
396 cm->GetCookies(GURL("http://bla.www.google.izzle")));
397 EXPECT_EQ("A=B; C=D; E=F; G=H", cm->GetCookies(url_google));
413 EXPECT_EQ("", cm->GetCookies(url_google));
435 EXPECT_EQ("a=1; b=2; c=3; d=4", cm->GetCookies(url_abcd))
    [all...]
cookie_store.cc 15 std::string CookieStore::GetCookies(const GURL& url) {
cookie_store.h 57 std::string GetCookies(const GURL& url);
cookie_monster_perftest.cc 68 cm->GetCookies(kUrlGoogle);
96 cm->GetCookies(*it);
152 cookie_line = cm->GetCookies(probe_gurl);
157 cm->GetCookies(probe_gurl);
193 cookie_line = cm->GetCookies(probe_gurl);
197 cm->GetCookies(probe_gurl);
  /external/chromium_org/media/base/android/
media_resource_getter.h 29 virtual void GetCookies(const GURL& url,
  /external/chromium/chrome/browser/automation/
automation_util.h 37 void GetCookies(const GURL& url,
  /external/chromium_org/chrome/browser/content_settings/
content_settings_browsertest.cc 61 ASSERT_TRUE(content::GetCookies(browser()->profile(), url).empty());
64 ASSERT_TRUE(content::GetCookies(incognito->profile(), url).empty());
67 !content::GetCookies(incognito->profile(), url).empty());
70 ASSERT_TRUE(content::GetCookies(browser()->profile(), url).empty());
89 ASSERT_TRUE(content::GetCookies(incognito->profile(), url).empty());
94 ASSERT_TRUE(GetCookies(browser()->profile(), url).empty());
99 ASSERT_FALSE(GetCookies(browser()->profile(), url).empty());
103 ASSERT_FALSE(GetCookies(browser()->profile(), url).empty());
143 ASSERT_TRUE(GetCookies(browser()->profile(), url).empty());
165 ASSERT_TRUE(GetCookies(browser()->profile(), url).empty())
    [all...]
  /external/chromium_org/content/browser/android/
media_resource_getter_impl.h 44 virtual void GetCookies(const GURL& url,
57 // Called when GetCookies() finishes.
  /external/chromium_org/content/browser/loader/
resource_dispatcher_host_browsertest.cc 82 std::string GetCookies(const GURL& url) {
83 return content::GetCookies(
236 EXPECT_EQ("onunloadCookie=foo", GetCookies(url));
254 EXPECT_EQ("onunloadCookie=foo", GetCookies(url));
291 EXPECT_EQ("", GetCookies(url));
356 EXPECT_EQ("onunloadCookie=foo", GetCookies(url));
  /external/chromium_org/chrome/browser/extensions/
web_view_browsertest.cc 792 automation_util::GetCookies(GURL("http://localhost"),
801 automation_util::GetCookies(GURL("http://localhost"),
806 automation_util::GetCookies(GURL("http://localhost"),
812 automation_util::GetCookies(GURL("http://localhost"),
    [all...]
  /external/chromium_org/chrome/test/webdriver/commands/
cookie_commands.cc 42 error = session_->GetCookies(url, &cookies);
88 error = session_->GetCookies(url, &cookies);
98 kUnknownError, "GetCookies returned non-dict type"));
105 "GetCookies returned cookie with missing or invalid 'name'"));
  /external/chromium_org/net/url_request/
url_fetcher_impl.cc 164 const ResponseCookies& URLFetcherImpl::GetCookies() const {
165 return core_->GetCookies();
url_fetcher.h 274 virtual const ResponseCookies& GetCookies() const = 0;
url_fetcher_impl.h 84 virtual const ResponseCookies& GetCookies() const OVERRIDE;
  /external/chromium_org/chrome/browser/automation/
automation_util.h 57 void GetCookies(const GURL& url,
  /external/chromium_org/content/child/npapi/
webplugin.h 77 virtual std::string GetCookies(const GURL& url,
  /external/chromium_org/chrome/test/chromedriver/chrome/
stub_web_view.h 53 virtual Status GetCookies(scoped_ptr<base::ListValue>* cookies) OVERRIDE;
web_view.h 105 virtual Status GetCookies(scoped_ptr<base::ListValue>* cookies) = 0;

Completed in 386 milliseconds

1 2 3