Index: content/browser/net/quota_policy_cookie_store_unittest.cc |
diff --git a/content/browser/net/quota_policy_cookie_store_unittest.cc b/content/browser/net/quota_policy_cookie_store_unittest.cc |
index 9b72aa93ec8f2c82da45f86e0225a0109912280a..fc1c243f46608e125837c95c88d1d0d423704437 100644 |
--- a/content/browser/net/quota_policy_cookie_store_unittest.cc |
+++ b/content/browser/net/quota_policy_cookie_store_unittest.cc |
@@ -96,10 +96,10 @@ class QuotaPolicyCookieStoreTest : public testing::Test { |
const std::string& domain, |
const std::string& path, |
const base::Time& creation) { |
- store_->AddCookie(*net::CanonicalCookie::Create( |
- name, value, domain, path, creation, creation, base::Time(), false, |
- false, net::CookieSameSite::DEFAULT_MODE, |
- net::COOKIE_PRIORITY_DEFAULT)); |
+ store_->AddCookie(net::CanonicalCookie(name, value, domain, path, creation, |
+ creation, base::Time(), false, false, |
+ net::CookieSameSite::DEFAULT_MODE, |
+ net::COOKIE_PRIORITY_DEFAULT)); |
} |
void DestroyStore() { |