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

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

Issue 1393193005: Implement $Secure- cookie prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fix Created 5 years, 2 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
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 39e30db204de21c6010941414d2897fc2fa85dea..7db6f409fcf67dd20a239d0fb8e6c00dc7abe83f 100644
--- a/ios/net/cookies/cookie_store_ios_unittest.mm
+++ b/ios/net/cookies/cookie_store_ios_unittest.mm
@@ -42,6 +42,7 @@ 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 int enforces_prefixes = true;
base::MessageLoop loop_;
};
@@ -58,6 +59,7 @@ struct InactiveCookieStoreIOSTestTraits {
static const bool filters_schemes = false;
static const bool has_path_prefix_bug = false;
static const int creation_time_granularity_in_ms = 0;
+ static const int enforces_prefixes = true;
base::MessageLoop loop_;
};
@@ -168,6 +170,7 @@ struct RoundTripTestCookieStoreTraits {
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 int enforces_prefixes = true;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698