| 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 b4ab24128dc67b105db8b7c7145e27d482227ad9..cb2f98eaab019396bcd34bb07ef9cc775b8bfcb3 100644
|
| --- a/content/browser/net/sqlite_persistent_cookie_store.cc
|
| +++ b/content/browser/net/sqlite_persistent_cookie_store.cc
|
| @@ -50,7 +50,10 @@ namespace {
|
| // The persistent cookie store is loaded into memory on eTLD at a time. This
|
| // variable controls the delay between loading eTLDs, so as to not overload the
|
| // CPU or I/O with these low priority requests immediately after start up.
|
| -const int kLoadDelayMilliseconds = 200;
|
| +// TODO(erikchen): Investigate why setting this value to 200 causes hangs on
|
| +// shut down.
|
| +// http://crbug.com/448910
|
| +const int kLoadDelayMilliseconds = 0;
|
|
|
| } // namespace
|
|
|
|
|