| Index: content/browser/devtools/protocol/network_handler.cc
|
| diff --git a/content/browser/devtools/protocol/network_handler.cc b/content/browser/devtools/protocol/network_handler.cc
|
| index 56e37aca1e45ff2ad1940f7c63a11f79e417fc0b..013609738d34bb0c010df75e2bc86050e3b409d1 100644
|
| --- a/content/browser/devtools/protocol/network_handler.cc
|
| +++ b/content/browser/devtools/protocol/network_handler.cc
|
| @@ -230,10 +230,6 @@ void SetCookieOnIO(
|
| net::URLRequestContext* request_context =
|
| GetRequestContextOnIO(resource_context, context_getter, url);
|
|
|
| - bool are_experimental_cookie_features_enabled =
|
| - request_context->network_delegate()
|
| - ->AreExperimentalCookieFeaturesEnabled();
|
| -
|
| request_context->cookie_store()->SetCookieWithDetailsAsync(
|
| url, name, value, domain, path,
|
| base::Time(),
|
| @@ -242,7 +238,6 @@ void SetCookieOnIO(
|
| secure,
|
| http_only,
|
| same_site,
|
| - are_experimental_cookie_features_enabled,
|
| net::COOKIE_PRIORITY_DEFAULT,
|
| base::Bind(&CookieSetOnIO, base::Passed(std::move(callback))));
|
| }
|
|
|