/external/chromium/net/base/ |
cookie_monster_store_test.h | 7 // that need to test out CookieMonster interactions with the backing store. 27 const CookieMonster::CanonicalCookie& cookie) 32 CookieMonster::CanonicalCookie cookie; 39 : public CookieMonster::PersistentCookieStore { 48 const std::vector<CookieMonster::CanonicalCookie*>& result); 55 std::vector<CookieMonster::CanonicalCookie*>* out_cookies); 57 virtual void AddCookie(const CookieMonster::CanonicalCookie& cookie); 60 const CookieMonster::CanonicalCookie& cookie); 63 const CookieMonster::CanonicalCookie& cookie); 75 std::vector<CookieMonster::CanonicalCookie*> load_result_ [all...] |
cookie_monster_unittest.cc | 42 void PopulateCmForDeleteAllForHost(scoped_refptr<CookieMonster> cm) { 121 CookieMonster::ParsedCookie pc("a=b"); 156 CookieMonster::ParsedCookie pc( 173 CookieMonster::ParsedCookie pc("BLAHHH; path=/; secure;"); 183 CookieMonster::ParsedCookie pc("BLAHHH; Path=/; sECuRe; httpONLY"); 195 CookieMonster::ParsedCookie pc("\"BLA\\\"HHH\"; path=/; secure;"); 206 CookieMonster::ParsedCookie pc("a=\"B"); 214 CookieMonster::ParsedCookie pc("=ABC"); 222 CookieMonster::ParsedCookie pc("ABC=; path = /wee"); 232 CookieMonster::ParsedCookie pc(" A = BC ;secure;;; httponly") [all...] |
cookie_monster_store_test.cc | 23 const std::vector<CookieMonster::CanonicalCookie*>& result) { 29 std::vector<CookieMonster::CanonicalCookie*>* out_cookies) { 37 const CookieMonster::CanonicalCookie& cookie) { 43 const CookieMonster::CanonicalCookie& cookie) { 49 const CookieMonster::CanonicalCookie& cookie) { 67 const CookieMonster::CanonicalCookie& cookie, 69 CookieMonster::Delegate::ChangeCause cause) { 80 std::vector<CookieMonster::CanonicalCookie*>* out_list) { 83 CookieMonster::ParsedCookie pc(cookie_line); 87 // avoid duplicated CookieMonster's CanonPath() and CanonExpiration( [all...] |
cookie_monster_perftest.cc | 31 CookieMonster::ParsedCookie pc(cookie); 42 CookieMonster::ParsedCookie pc(cookie); 51 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)); 78 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)); 110 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)); 164 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)) [all...] |
cookie_monster.cc | 73 const size_t CookieMonster::kDomainMaxCookies = 180; 74 const size_t CookieMonster::kDomainPurgeCookies = 30; 75 const size_t CookieMonster::kMaxCookies = 3300; 76 const size_t CookieMonster::kPurgeCookies = 300; 77 const int CookieMonster::kSafeFromGlobalPurgeDays = 30; 88 bool operator()(const CookieMonster::CookieMap::iterator& a, 89 const CookieMonster::CookieMap::iterator& b) const { 104 bool CookieSorter(CookieMonster::CanonicalCookie* cc1, 105 CookieMonster::CanonicalCookie* cc2) { 111 bool LRUCookieSorter(const CookieMonster::CookieMap::iterator& it1 [all...] |
cookie_store.h | 24 class CookieMonster; 46 // Returns the underlying CookieMonster. 47 virtual CookieMonster* GetCookieMonster() = 0;
|
cookie_monster.h | 43 // TODO(deanm) Implement CookieMonster, the cookie database. 45 class NET_EXPORT CookieMonster : public CookieStore { 68 // CookieMap is the central data structure of the CookieMonster. It 70 // structures (the data structures are owned by the CookieMonster 72 // possible keys for the map, controlled on a per-CookieMonster basis 119 CookieMonster(PersistentCookieStore* store, Delegate* delegate); 122 CookieMonster(PersistentCookieStore* store, 209 // Must be called before creating a CookieMonster instance. 236 virtual CookieMonster* GetCookieMonster(); 338 ~CookieMonster(); [all...] |
/external/chromium/chrome/browser/net/ |
chrome_cookie_notification_details.h | 13 ChromeCookieDetails(const net::CookieMonster::CanonicalCookie* cookie_copy, 15 net::CookieMonster::Delegate::ChangeCause cause) 21 const net::CookieMonster::CanonicalCookie* cookie; 23 net::CookieMonster::Delegate::ChangeCause cause;
|
sqlite_persistent_cookie_store.h | 24 // of the parent class |net::CookieMonster::PersistentCookieStore|. 30 : public net::CookieMonster::PersistentCookieStore { 35 virtual bool Load(std::vector<net::CookieMonster::CanonicalCookie*>* cookies); 37 virtual void AddCookie(const net::CookieMonster::CanonicalCookie& cc); 39 const net::CookieMonster::CanonicalCookie& cc); 40 virtual void DeleteCookie(const net::CookieMonster::CanonicalCookie& cc);
|
sqlite_persistent_cookie_store.cc | 42 // This class is used by CookieMonster, which is threadsafe, so this class must 68 bool Load(std::vector<net::CookieMonster::CanonicalCookie*>* cookies); 71 void AddCookie(const net::CookieMonster::CanonicalCookie& cc); 74 void UpdateCookieAccessTime(const net::CookieMonster::CanonicalCookie& cc); 77 void DeleteCookie(const net::CookieMonster::CanonicalCookie& cc); 114 const net::CookieMonster::CanonicalCookie& cc) 118 const net::CookieMonster::CanonicalCookie& cc() const { return cc_; } 122 net::CookieMonster::CanonicalCookie cc_; 128 const net::CookieMonster::CanonicalCookie& cc); 205 std::vector<net::CookieMonster::CanonicalCookie*>* cookies) [all...] |
/external/chromium_org/chrome/browser/net/ |
chrome_cookie_notification_details.h | 18 net::CookieMonster::Delegate::ChangeCause cause) 26 net::CookieMonster::Delegate::ChangeCause cause;
|
evicted_domain_cookie_counter.h | 43 class EvictedDomainCookieCounter : public net::CookieMonster::Delegate { 77 scoped_refptr<net::CookieMonster::Delegate> next_cookie_monster_delegate); 81 scoped_refptr<net::CookieMonster::Delegate> next_cookie_monster_delegate, 89 // CookieMonster::Delegate implementation. 129 scoped_refptr<net::CookieMonster::Delegate> next_cookie_monster_delegate_;
|
/external/chromium_org/net/cookies/ |
cookie_store_test_helpers.h | 22 // Call the asynchronous CookieMonster function, expect it to immediately 30 const CookieMonster::SetCookiesCallback& callback) OVERRIDE; 35 const CookieMonster::GetCookiesCallback& callback) OVERRIDE; 58 virtual CookieMonster* GetCookieMonster() OVERRIDE; 62 // Be called immediately from CookieMonster. 71 const CookieMonster::SetCookiesCallback& callback); 74 const CookieMonster::GetCookiesCallback& callback); 79 scoped_refptr<CookieMonster> cookie_monster_;
|
cookie_monster.cc | 74 // queueing it on CookieMonster::tasks_pending_ and running it when notification 75 // of cookie load completion is received via CookieMonster::OnLoaded. This 76 // callback is passed to the persistent store from CookieMonster::InitStore(), 77 // which is called on the first operation invoked on the CookieMonster. 84 // CookieMonster::tasks_pending_for_key_ and executed upon receiving 85 // notification of key load completion via CookieMonster::OnKeyLoaded(). If 89 // in CookieMonster::tasks_pending_for_key_ and executed upon receiving 99 const size_t CookieMonster::kDomainMaxCookies = 180; 100 const size_t CookieMonster::kDomainPurgeCookies = 30; 101 const size_t CookieMonster::kMaxCookies = 3300 [all...] |
cookie_monster_perftest.cc | 65 CookieMonster* cm, const GURL& gurl, const std::string& cookie) { 80 const std::string& GetCookies(CookieMonster* cm, const GURL& gurl) { 120 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)); 147 cm->DeleteAllAsync(CookieMonster::DeleteCallback()); 153 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)); 180 cm->DeleteAllAsync(CookieMonster::DeleteCallback()); 186 scoped_refptr<CookieMonster> cm(new CookieMonster(NULL, NULL)) [all...] |
cookie_monster_store_test.h | 7 // that need to test out CookieMonster interactions with the backing store. 32 typedef CookieMonster::PersistentCookieStore::LoadedCallback LoadedCallback; 71 : public CookieMonster::PersistentCookieStore { 118 // Mock for CookieMonster::Delegate 119 class MockCookieMonsterDelegate : public CookieMonster::Delegate { 133 CookieMonster::Delegate::ChangeCause cause) OVERRIDE; 158 : public CookieMonster::PersistentCookieStore { 190 // Helper function for creating a CookieMonster backed by a 198 CookieMonster* CreateMonsterFromStoreForGC(
|
cookie_store_test_helpers.cc | 15 : cookie_monster_(new CookieMonster(NULL, NULL)), 38 const CookieMonster::SetCookiesCallback& callback) { 56 const CookieMonster::GetCookiesCallback& callback) { 72 const CookieMonster::SetCookiesCallback& callback) { 78 const CookieMonster::GetCookiesCallback& callback) { 120 CookieMonster* DelayedCookieMonster::GetCookieMonster() {
|
cookie_store.h | 24 class CookieMonster; 73 // Returns the underlying CookieMonster. 74 virtual CookieMonster* GetCookieMonster() = 0;
|
cookie_monster_unittest.cc | 45 : public CookieMonster::PersistentCookieStore { 90 return new CookieMonster(NULL, NULL); 102 INSTANTIATE_TYPED_TEST_CASE_P(CookieMonster, 106 INSTANTIATE_TYPED_TEST_CASE_P(CookieMonster, 113 CookieList GetAllCookies(CookieMonster* cm) { 124 CookieList GetAllCookiesForURL(CookieMonster* cm, 136 CookieList GetAllCookiesForURLWithOptions(CookieMonster* cm, 149 bool SetCookieWithDetails(CookieMonster* cm, 171 int DeleteAll(CookieMonster*cm) { 181 int DeleteAllCreatedBetween(CookieMonster*cm [all...] |
/external/chromium_org/chrome/browser/browsing_data/ |
mock_browsing_data_cookie_helper.h | 22 const net::CookieMonster::GetCookieListCallback &callback) OVERRIDE; 41 net::CookieMonster::GetCookieListCallback callback_;
|
/external/chromium_org/content/public/browser/ |
cookie_store_factory.h | 28 net::CookieMonster::Delegate* cookie_monster_delegate, 38 net::CookieMonster::Delegate* cookie_monster_delegate,
|
/external/chromium/chrome/browser/extensions/ |
extension_cookies_helpers.h | 40 const net::CookieMonster::CanonicalCookie& cookie, 60 const net::CookieMonster::CanonicalCookie& cookie); 91 bool MatchesCookie(const net::CookieMonster::CanonicalCookie& cookie);
|
extension_cookies_helpers.cc | 49 const net::CookieMonster::CanonicalCookie& cookie, 57 net::CookieMonster::DomainIsHostOnly(cookie.Domain())); 84 net::CookieMonster* monster = cookie_store->GetCookieMonster(); 93 const net::CookieMonster::CanonicalCookie& cookie) { 139 const net::CookieMonster::CanonicalCookie& cookie) { 171 if (net::CookieMonster::DomainIsHostOnly(filter_value)) 176 if (!net::CookieMonster::DomainIsHostOnly(sub_domain))
|
/external/chromium/webkit/glue/ |
webcookie.h | 18 explicit WebCookie(const net::CookieMonster::CanonicalCookie& c);
|
/external/chromium/chrome/browser/tab_contents/ |
tab_specific_content_settings.h | 24 class CookieMonster; 131 net::CookieMonster* cookies() const { return cookies_; } 155 scoped_refptr<net::CookieMonster> cookies_;
|