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

Unified Diff: chrome/browser/browsing_data/browsing_data_remover_impl_unittest.cc

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
Index: chrome/browser/browsing_data/browsing_data_remover_impl_unittest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_remover_impl_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_impl_unittest.cc
index 50594219db9e861c6dd79b4285c22033983a78e6..caedff9c83fdd1f6c7f1f9ff36a2a9a9b28d7fb3 100644
--- a/chrome/browser/browsing_data/browsing_data_remover_impl_unittest.cc
+++ b/chrome/browser/browsing_data/browsing_data_remover_impl_unittest.cc
@@ -129,7 +129,7 @@ struct StoragePartitionRemovalData {
net::CanonicalCookie CreateCookieWithHost(const GURL& source) {
std::unique_ptr<net::CanonicalCookie> cookie(net::CanonicalCookie::Create(
source, "A", "1", std::string(), "/", base::Time::Now(),
- base::Time::Now(), false, false, net::CookieSameSite::DEFAULT_MODE, false,
+ base::Time::Now(), false, false, net::CookieSameSite::DEFAULT_MODE,
net::COOKIE_PRIORITY_MEDIUM));
EXPECT_TRUE(cookie);
return *cookie;
« no previous file with comments | « chrome/browser/android/cookies/cookies_fetcher.cc ('k') | chrome/browser/chromeos/login/profile_auth_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698