| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ | 5 #ifndef IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ |
| 6 #define IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ | 6 #define IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 const std::string& name, | 89 const std::string& name, |
| 90 const std::string& value, | 90 const std::string& value, |
| 91 const std::string& domain, | 91 const std::string& domain, |
| 92 const std::string& path, | 92 const std::string& path, |
| 93 base::Time creation_time, | 93 base::Time creation_time, |
| 94 base::Time expiration_time, | 94 base::Time expiration_time, |
| 95 base::Time last_access_time, | 95 base::Time last_access_time, |
| 96 bool secure, | 96 bool secure, |
| 97 bool http_only, | 97 bool http_only, |
| 98 CookieSameSite same_site, | 98 CookieSameSite same_site, |
| 99 bool enforce_strict_secure, | |
| 100 CookiePriority priority, | 99 CookiePriority priority, |
| 101 const SetCookiesCallback& callback) override; | 100 const SetCookiesCallback& callback) override; |
| 102 void GetCookiesWithOptionsAsync(const GURL& url, | 101 void GetCookiesWithOptionsAsync(const GURL& url, |
| 103 const net::CookieOptions& options, | 102 const net::CookieOptions& options, |
| 104 const GetCookiesCallback& callback) override; | 103 const GetCookiesCallback& callback) override; |
| 105 void GetCookieListWithOptionsAsync( | 104 void GetCookieListWithOptionsAsync( |
| 106 const GURL& url, | 105 const GURL& url, |
| 107 const net::CookieOptions& options, | 106 const net::CookieOptions& options, |
| 108 const GetCookieListCallback& callback) override; | 107 const GetCookieListCallback& callback) override; |
| 109 void GetAllCookiesAsync(const GetCookieListCallback& callback) override; | 108 void GetAllCookiesAsync(const GetCookieListCallback& callback) override; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 hook_map_; | 284 hook_map_; |
| 286 | 285 |
| 287 base::WeakPtrFactory<CookieStoreIOS> weak_factory_; | 286 base::WeakPtrFactory<CookieStoreIOS> weak_factory_; |
| 288 | 287 |
| 289 DISALLOW_COPY_AND_ASSIGN(CookieStoreIOS); | 288 DISALLOW_COPY_AND_ASSIGN(CookieStoreIOS); |
| 290 }; | 289 }; |
| 291 | 290 |
| 292 } // namespace net | 291 } // namespace net |
| 293 | 292 |
| 294 #endif // IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ | 293 #endif // IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ |
| OLD | NEW |