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

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

Issue 1773133002: SameSite: Implement 'Strict'/'Lax' attribute parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mmenke@ Created 4 years, 9 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 <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 void SetCookieWithDetailsAsync(const GURL& url, 121 void SetCookieWithDetailsAsync(const GURL& url,
122 const std::string& name, 122 const std::string& name,
123 const std::string& value, 123 const std::string& value,
124 const std::string& domain, 124 const std::string& domain,
125 const std::string& path, 125 const std::string& path,
126 base::Time creation_time, 126 base::Time creation_time,
127 base::Time expiration_time, 127 base::Time expiration_time,
128 base::Time last_access_time, 128 base::Time last_access_time,
129 bool secure, 129 bool secure,
130 bool http_only, 130 bool http_only,
131 bool same_site, 131 CookieSameSite same_site,
132 bool enforce_strict_secure, 132 bool enforce_strict_secure,
133 CookiePriority priority, 133 CookiePriority priority,
134 const SetCookiesCallback& callback) override; 134 const SetCookiesCallback& callback) override;
135 void GetCookiesWithOptionsAsync(const GURL& url, 135 void GetCookiesWithOptionsAsync(const GURL& url,
136 const net::CookieOptions& options, 136 const net::CookieOptions& options,
137 const GetCookiesCallback& callback) override; 137 const GetCookiesCallback& callback) override;
138 void GetCookieListWithOptionsAsync( 138 void GetCookieListWithOptionsAsync(
139 const GURL& url, 139 const GURL& url,
140 const net::CookieOptions& options, 140 const net::CookieOptions& options,
141 const GetCookieListCallback& callback) override; 141 const GetCookieListCallback& callback) override;
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 CookieChangedHookMap hook_map_; 329 CookieChangedHookMap hook_map_;
330 330
331 base::WeakPtrFactory<CookieStoreIOS> weak_factory_; 331 base::WeakPtrFactory<CookieStoreIOS> weak_factory_;
332 332
333 DISALLOW_COPY_AND_ASSIGN(CookieStoreIOS); 333 DISALLOW_COPY_AND_ASSIGN(CookieStoreIOS);
334 }; 334 };
335 335
336 } // namespace net 336 } // namespace net
337 337
338 #endif // IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ 338 #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