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

Side by Side Diff: net/cookies/cookie_store_test_helpers.cc

Issue 2633663003: Implements strict secure cookies as the default behavior in //net (Closed)
Patch Set: Rebase on ToT Created 3 years, 10 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 | « net/cookies/cookie_store_test_helpers.h ('k') | net/cookies/cookie_store_unittest.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #include "net/cookies/cookie_store_test_helpers.h" 5 #include "net/cookies/cookie_store_test_helpers.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 const std::string& name, 80 const std::string& name,
81 const std::string& value, 81 const std::string& value,
82 const std::string& domain, 82 const std::string& domain,
83 const std::string& path, 83 const std::string& path,
84 base::Time creation_time, 84 base::Time creation_time,
85 base::Time expiration_time, 85 base::Time expiration_time,
86 base::Time last_access_time, 86 base::Time last_access_time,
87 bool secure, 87 bool secure,
88 bool http_only, 88 bool http_only,
89 CookieSameSite same_site, 89 CookieSameSite same_site,
90 bool enforce_strict_secure,
91 CookiePriority priority, 90 CookiePriority priority,
92 const SetCookiesCallback& callback) { 91 const SetCookiesCallback& callback) {
93 NOTREACHED(); 92 NOTREACHED();
94 } 93 }
95 94
96 void DelayedCookieMonster::GetCookiesWithOptionsAsync( 95 void DelayedCookieMonster::GetCookiesWithOptionsAsync(
97 const GURL& url, 96 const GURL& url,
98 const CookieOptions& options, 97 const CookieOptions& options,
99 const CookieMonster::GetCookiesCallback& callback) { 98 const CookieMonster::GetCookiesCallback& callback) {
100 did_run_ = false; 99 did_run_ = false;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 232
234 std::string CookieURLHelper::Format(const std::string& format_string) const { 233 std::string CookieURLHelper::Format(const std::string& format_string) const {
235 std::string new_string = format_string; 234 std::string new_string = format_string;
236 base::ReplaceSubstringsAfterOffset(&new_string, 0, "%D", 235 base::ReplaceSubstringsAfterOffset(&new_string, 0, "%D",
237 domain_and_registry_); 236 domain_and_registry_);
238 base::ReplaceSubstringsAfterOffset(&new_string, 0, "%R", registry_); 237 base::ReplaceSubstringsAfterOffset(&new_string, 0, "%R", registry_);
239 return new_string; 238 return new_string;
240 } 239 }
241 240
242 } // namespace net 241 } // namespace net
OLDNEW
« no previous file with comments | « net/cookies/cookie_store_test_helpers.h ('k') | net/cookies/cookie_store_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698