New issue
Advanced search Search tips

Issue 906818 link

Starred by 1 user

Issue metadata

Status: Available
Owner: ----
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug



Sign in to add a comment

Remove net::URLRequest::SetDefaultCookiePolicyToBlock call from chrome/app/chrome_main_delegate.cc

Project Member Reported by mmenke@chromium.org, Nov 19

Issue description

This method will have no effect when the network service is out of process.  Individual NetworkContexts are configured to have or not have CookieStores when they're created anyways (As was the case with URLRequestContextBuilders, before actually).  With the network service, the method has no effect - doesn't look like it was doing anything before, anyways, as the only URLRequestContexts we were constructing all forced cookies to be enabled.

The SetDefaultCookiePolicyToBlock() call in the cloud print service (chrome/service/service_main.cc) does look to be useful, however, as the cloud print service just called URLRequestContextBuilder.Build() without setting any cookie options, which will get out an in-memory cookie store.  Fixing that not to create a cookie store should allow the call to be removed there, too, though.
 
Labels: Proj-Servicification
Status: Available (was: Untriaged)
Labels: Hotlist-KnownIssue

Sign in to add a comment