| Index: content/browser/net/sqlite_persistent_cookie_store.cc
|
| diff --git a/content/browser/net/sqlite_persistent_cookie_store.cc b/content/browser/net/sqlite_persistent_cookie_store.cc
|
| index 50b7a667d7a445d1bb966aff68c2d516764a9b2f..eaf793047a9b0b8cf28803ef9d84c69d418d74dd 100644
|
| --- a/content/browser/net/sqlite_persistent_cookie_store.cc
|
| +++ b/content/browser/net/sqlite_persistent_cookie_store.cc
|
| @@ -12,7 +12,6 @@
|
| #include "base/basictypes.h"
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| -#include "base/command_line.h"
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| #include "base/location.h"
|
| @@ -29,7 +28,6 @@
|
| #include "base/time/time.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/cookie_store_factory.h"
|
| -#include "content/public/common/content_switches.h"
|
| #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
|
| #include "net/cookies/canonical_cookie.h"
|
| #include "net/cookies/cookie_constants.h"
|
| @@ -1391,11 +1389,6 @@ net::CookieStore* CreateCookieStore(const CookieStoreConfig& config) {
|
| }
|
| }
|
|
|
| - if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableFileCookies)) {
|
| - cookie_monster->SetEnableFileScheme(true);
|
| - }
|
| -
|
| return cookie_monster;
|
| }
|
|
|
|
|