| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Brought to you by the letter D and the number 2. | 5 // Brought to you by the letter D and the number 2. |
| 6 | 6 |
| 7 #ifndef NET_BASE_COOKIE_MONSTER_H_ | 7 #ifndef NET_BASE_COOKIE_MONSTER_H_ |
| 8 #define NET_BASE_COOKIE_MONSTER_H_ | 8 #define NET_BASE_COOKIE_MONSTER_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 const base::Time& expiration_time, | 161 const base::Time& expiration_time, |
| 162 bool secure, bool http_only); | 162 bool secure, bool http_only); |
| 163 | 163 |
| 164 // Returns all the cookies, for use in management UI, etc. This does not mark | 164 // Returns all the cookies, for use in management UI, etc. This does not mark |
| 165 // the cookies as having been accessed. | 165 // the cookies as having been accessed. |
| 166 // The returned cookies are ordered by longest path, then by earliest | 166 // The returned cookies are ordered by longest path, then by earliest |
| 167 // creation date. | 167 // creation date. |
| 168 CookieList GetAllCookies(); | 168 CookieList GetAllCookies(); |
| 169 | 169 |
| 170 // Returns all the cookies, for use in management UI, etc. Filters results | 170 // Returns all the cookies, for use in management UI, etc. Filters results |
| 171 // using given url scheme, host / domain and path. This does not mark the | 171 // using given url scheme, host / domain and path and options. This does not |
| 172 // cookies as having been accessed. | 172 // mark the cookies as having been accessed. |
| 173 // The returned cookies are ordered by longest path, then earliest | 173 // The returned cookies are ordered by longest path, then earliest |
| 174 // creation date. | 174 // creation date. |
| 175 CookieList GetAllCookiesForURLWithOptions(const GURL& url, |
| 176 const CookieOptions& options); |
| 177 |
| 178 // Invokes GetAllCookiesForURLWithOptions with options set to include HTTP |
| 179 // only cookies. |
| 175 CookieList GetAllCookiesForURL(const GURL& url); | 180 CookieList GetAllCookiesForURL(const GURL& url); |
| 176 | 181 |
| 177 // Deletes all of the cookies. | 182 // Deletes all of the cookies. |
| 178 int DeleteAll(bool sync_to_store); | 183 int DeleteAll(bool sync_to_store); |
| 179 // Deletes all of the cookies that have a creation_date greater than or equal | 184 // Deletes all of the cookies that have a creation_date greater than or equal |
| 180 // to |delete_begin| and less than |delete_end| | 185 // to |delete_begin| and less than |delete_end| |
| 181 int DeleteAllCreatedBetween(const base::Time& delete_begin, | 186 int DeleteAllCreatedBetween(const base::Time& delete_begin, |
| 182 const base::Time& delete_end, | 187 const base::Time& delete_end, |
| 183 bool sync_to_store); | 188 bool sync_to_store); |
| 184 // Deletes all of the cookies that have a creation_date more recent than the | 189 // Deletes all of the cookies that have a creation_date more recent than the |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 protected: | 694 protected: |
| 690 PersistentCookieStore() { } | 695 PersistentCookieStore() { } |
| 691 | 696 |
| 692 private: | 697 private: |
| 693 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); | 698 DISALLOW_COPY_AND_ASSIGN(PersistentCookieStore); |
| 694 }; | 699 }; |
| 695 | 700 |
| 696 } // namespace net | 701 } // namespace net |
| 697 | 702 |
| 698 #endif // NET_BASE_COOKIE_MONSTER_H_ | 703 #endif // NET_BASE_COOKIE_MONSTER_H_ |
| OLD | NEW |