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

Unified Diff: ios/net/cookies/cookie_store_ios_unittest.mm

Issue 2633663003: Implements strict secure cookies as the default behavior in //net (Closed)
Patch Set: Rebase on ToT Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/net/cookies/cookie_store_ios.mm ('k') | net/base/layered_network_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/net/cookies/cookie_store_ios_unittest.mm
diff --git a/ios/net/cookies/cookie_store_ios_unittest.mm b/ios/net/cookies/cookie_store_ios_unittest.mm
index 25338d4258361b98a80824e6ea30014e5f5e7d99..6bc192bffc06e3f4e2a7db2feb84c82d1e165c0c 100644
--- a/ios/net/cookies/cookie_store_ios_unittest.mm
+++ b/ios/net/cookies/cookie_store_ios_unittest.mm
@@ -46,7 +46,6 @@ struct CookieStoreIOSTestTraits {
static const bool filters_schemes = false;
static const bool has_path_prefix_bug = true;
static const int creation_time_granularity_in_ms = 1000;
- static const bool enforce_strict_secure = false;
base::MessageLoop loop_;
};
@@ -113,7 +112,7 @@ class TestPersistentCookieStore
base::Time(), // expires
false, // secure
false, // httponly
- net::CookieSameSite::DEFAULT_MODE, false,
+ net::CookieSameSite::DEFAULT_MODE,
net::COOKIE_PRIORITY_DEFAULT));
cookies.push_back(std::move(bad_canonical_cookie));
loaded_callback_.Run(std::move(cookies));
« no previous file with comments | « ios/net/cookies/cookie_store_ios.mm ('k') | net/base/layered_network_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698