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

Unified Diff: headless/public/util/testing/generic_url_request_mocks.cc

Issue 2882063002: Add a SetCanonicalCookie method for CookieMonster. (Closed)
Patch Set: Fix iOS behavior for secure cookies. Created 3 years, 6 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: headless/public/util/testing/generic_url_request_mocks.cc
diff --git a/headless/public/util/testing/generic_url_request_mocks.cc b/headless/public/util/testing/generic_url_request_mocks.cc
index 54f1ed9e44748f95f3f068fb0cc1f2575dcb78f7..8bddf5c65fe978f17f180dd38f9ccee0a25f4528 100644
--- a/headless/public/util/testing/generic_url_request_mocks.cc
+++ b/headless/public/util/testing/generic_url_request_mocks.cc
@@ -84,6 +84,14 @@ void MockCookieStore::SetCookieWithDetailsAsync(
CHECK(false);
}
+void MockCookieStore::SetCanonicalCookieAsync(
+ const net::CanonicalCookie& cookie,
+ bool secure_source,
+ bool can_modify_httponly,
+ const SetCookiesCallback& callback) {
+ CHECK(false);
+}
+
void MockCookieStore::GetCookiesWithOptionsAsync(
const GURL& url,
const net::CookieOptions& options,

Powered by Google App Engine
This is Rietveld 408576698