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

Unified Diff: chrome/browser/android/cookies/cookies_fetcher.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/android/cookies/cookies_fetcher.cc
diff --git a/chrome/browser/android/cookies/cookies_fetcher.cc b/chrome/browser/android/cookies/cookies_fetcher.cc
index 6443c14b5c69c24b6d70e8d77d19ae2ef75baa38..f94ed4cb72f3a830cd89a34a0f06236d5b1b0af9 100644
--- a/chrome/browser/android/cookies/cookies_fetcher.cc
+++ b/chrome/browser/android/cookies/cookies_fetcher.cc
@@ -125,7 +125,7 @@ static void RestoreToCookieJarInternal(net::URLRequestContextGetter* getter,
store->SetCookieWithDetailsAsync(
url, cookie.Name(), cookie.Value(), effective_domain, cookie.Path(),
base::Time(), cookie.ExpiryDate(), cookie.LastAccessDate(),
- cookie.IsSecure(), cookie.IsHttpOnly(), cookie.SameSite(), false,
+ cookie.IsSecure(), cookie.IsHttpOnly(), cookie.SameSite(),
cookie.Priority(), cb);
}

Powered by Google App Engine
This is Rietveld 408576698