Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Side by Side Diff: ios/net/cookies/cookie_store_ios.h

Issue 2633663003: Implements strict secure cookies as the default behavior in //net (Closed)
Patch Set: Rebase on ToT Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/net/cookies/cookie_cache_unittest.cc ('k') | ios/net/cookies/cookie_store_ios.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ios/net/cookies/cookie_cache_unittest.cc ('k') | ios/net/cookies/cookie_store_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698