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

1 2 3

  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_browsertest.cc 13 #include "net/cookies/cookie_store.h"
94 net::CookieStore* cookie_store = context_getter-> local
95 GetURLRequestContext()->cookie_store();
96 cookie_store->GetCookiesWithOptionsAsync(
107 net::CookieStore* cookie_store = context_getter-> local
108 GetURLRequestContext()->cookie_store();
109 cookie_store->SetCookieWithOptionsAsync(
  /external/chromium/net/url_request/
url_request_context.cc 8 #include "net/base/cookie_store.h"
46 set_cookie_store(other->cookie_store());
61 void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
62 cookie_store_ = cookie_store;
url_request_context_storage.cc 10 #include "net/base/cookie_store.h"
80 void URLRequestContextStorage::set_cookie_store(CookieStore* cookie_store) {
81 context_->set_cookie_store(cookie_store);
82 cookie_store_ = cookie_store;
url_request_context_storage.h 54 void set_cookie_store(CookieStore* cookie_store);
url_request_context.h 134 CookieStore* cookie_store() const { return cookie_store_.get(); } function in class:net::URLRequestContext
135 void set_cookie_store(CookieStore* cookie_store);
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.cc 103 scoped_refptr<net::CookieStore> cookie_store; member in struct:AutomationResourceMessageFilter::CookieCompletionInfo
297 scoped_refptr<net::CookieStore> cookie_store(
310 filtered_render_views_.Get()[renderer_key].set_cookie_store(cookie_store);
354 scoped_refptr<net::CookieStore> cookie_store(
364 filtered_render_views_.Get()[renderer_key].set_cookie_store(cookie_store);
454 cookie_info.cookie_store = automation_details_iter->second.cookie_store_;
477 scoped_refptr<net::CookieStore> cookie_store = index->second.cookie_store; local
480 DCHECK(cookie_store.get() != NULL);
485 callback, cookie_store.get())
    [all...]
automation_resource_message_filter.h 15 #include "net/base/cookie_store.h"
40 void set_cookie_store(net::CookieStore* cookie_store) {
41 cookie_store_ = cookie_store;
44 net::CookieStore* cookie_store() { function in struct:AutomationResourceMessageFilter::AutomationDetails
147 net::CookieStore* cookie_store);
automation_util.cc 23 #include "net/base/cookie_store.h"
35 context_getter->GetURLRequestContext()->cookie_store()->GetCookies(url);
45 context_getter->GetURLRequestContext()->cookie_store()->
57 context_getter->GetURLRequestContext()->cookie_store()->
70 context_getter->GetURLRequestContext()->cookie_store()->
84 context_getter->GetURLRequestContext()->cookie_store()->
  /external/chromium_org/content/browser/media/android/
media_resource_getter_impl.cc 20 #include "net/cookies/cookie_store.h"
118 net::CookieStore* cookie_store = local
119 context_getter_->GetURLRequestContext()->cookie_store();
120 if (!cookie_store) {
125 net::CookieMonster* cookie_monster = cookie_store->GetCookieMonster();
143 net::CookieStore* cookie_store = local
144 context_getter_->GetURLRequestContext()->cookie_store();
145 cookie_store->GetCookiesWithOptionsAsync(
  /external/chromium_org/net/url_request/
url_request_context_storage.cc 11 #include "net/cookies/cookie_store.h"
92 void URLRequestContextStorage::set_cookie_store(CookieStore* cookie_store) {
93 context_->set_cookie_store(cookie_store);
94 cookie_store_ = cookie_store;
url_request_context.cc 11 #include "net/cookies/cookie_store.h"
80 void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
81 cookie_store_ = cookie_store;
url_request_context.h 152 CookieStore* cookie_store() const { return cookie_store_.get(); } function in class:net::URLRequestContext
153 void set_cookie_store(CookieStore* cookie_store);
  /external/chromium_org/android_webview/browser/net/
aw_url_request_context_getter.h 32 net::CookieStore* cookie_store);
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_signin_helper.cc 23 #include "net/cookies/cookie_store.h"
69 net::CookieStore* cookie_store = url_request_context ? local
70 url_request_context->cookie_store() : NULL;
71 net::CookieMonster* cookie_monster = cookie_store ?
72 cookie_store->GetCookieMonster() : NULL;
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.cc 244 scoped_refptr<net::CookieStore> cookie_store = NULL; local
247 cookie_store = new net::CookieMonster(
254 if (!cookie_store) {
261 cookie_store =
275 main_context->set_cookie_store(cookie_store);
276 media_request_context_->set_cookie_store(cookie_store);
323 scoped_refptr<net::CookieStore> cookie_store = NULL; local
329 cookie_store = new net::CookieMonster(NULL, NULL);
335 if (!cookie_store) {
344 cookie_store = new net::CookieMonster(cookie_db.get(), NULL)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_helpers.cc 100 CookieStore* cookie_store = new CookieStore(); local
101 bool rv = CookieStore::Populate(dict, cookie_store);
103 return scoped_ptr<CookieStore>(cookie_store);
107 net::CookieStore* cookie_store, const GURL& url,
109 DCHECK(cookie_store);
110 net::CookieMonster* monster = cookie_store->GetCookieMonster();
cookies_api.cc 236 net::CookieStore* cookie_store = local
237 store_context_->GetURLRequestContext()->cookie_store();
239 cookie_store, url_,
308 net::CookieStore* cookie_store = local
309 store_context_->GetURLRequestContext()->cookie_store();
311 cookie_store, url_,
373 store_context_->GetURLRequestContext()->cookie_store()->
407 store_context_->GetURLRequestContext()->cookie_store()->
488 net::CookieStore* cookie_store = local
489 store_context_->GetURLRequestContext()->cookie_store();
    [all...]
cookies_helpers.h 69 net::CookieStore* cookie_store, const GURL& url,
  /external/chromium/chrome/browser/extensions/
extension_cookies_api.cc 211 net::CookieStore* cookie_store = local
212 store_context_->GetURLRequestContext()->cookie_store();
214 extension_cookies_helpers::GetCookieListFromStore(cookie_store, url_);
272 net::CookieStore* cookie_store = local
273 store_context_->GetURLRequestContext()->cookie_store();
275 extension_cookies_helpers::GetCookieListFromStore(cookie_store, url_);
370 store_context_->GetURLRequestContext()->cookie_store()->
445 net::CookieStore* cookie_store = local
446 store_context_->GetURLRequestContext()->cookie_store();
447 cookie_store->DeleteCookie(url_, name_)
    [all...]
extension_cookies_helpers.h 53 net::CookieStore* cookie_store, const GURL& url);
extension_data_deleter.cc 64 extension_request_context_->GetURLRequestContext()->cookie_store()->
  /external/chromium_org/chrome/browser/chromeos/login/
profile_auth_data.cc 10 #include "net/cookies/cookie_store.h"
117 to_context_->GetURLRequestContext()->cookie_store();
142 to_context_->GetURLRequestContext()->cookie_store();
170 from_context_->GetURLRequestContext()->cookie_store();
  /external/chromium_org/chrome/browser/profiles/
profile_impl_io_data.cc 425 scoped_refptr<net::CookieStore> cookie_store = NULL; local
429 cookie_store = new net::CookieMonster(
438 if (!cookie_store.get()) {
441 cookie_store = content::CreatePersistentCookieStore(
447 cookie_store->GetCookieMonster()->SetPersistSessionCookies(true);
450 main_context->set_cookie_store(cookie_store.get());
607 scoped_refptr<net::CookieStore> cookie_store = NULL; local
609 cookie_store = new net::CookieMonster(NULL, NULL);
615 cookie_store = new net::CookieMonster(NULL, NULL);
621 if (!cookie_store.get())
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_data_deleter.cc 18 #include "net/cookies/cookie_store.h"
108 request_context_->cookie_store()->GetCookieMonster();
123 request_context->cookie_store()->GetCookieMonster()->GetAllCookiesAsync(
134 request_context->cookie_store()->GetCookieMonster();
  /external/chromium_org/chrome/browser/signin/
signin_manager_cookie_helper.cc 50 cookie_store()->GetCookieMonster();

Completed in 694 milliseconds

1 2 3