| Index: chrome/browser/history/in_memory_url_index.cc
|
| ===================================================================
|
| --- chrome/browser/history/in_memory_url_index.cc (revision 141067)
|
| +++ chrome/browser/history/in_memory_url_index.cc (working copy)
|
| @@ -134,7 +134,12 @@
|
| registrar_.RemoveAll();
|
| cache_reader_consumer_.CancelAllRequests();
|
| shutdown_ = true;
|
| - PostSaveToCacheFileTask();
|
| + FilePath path;
|
| + if (!GetCacheFilePath(&path))
|
| + return;
|
| + scoped_refptr<RefCountedBool> succeeded(new RefCountedBool(false));
|
| + URLIndexPrivateData::WritePrivateDataToCacheFileTask(
|
| + private_data_, path, succeeded);
|
| needs_to_be_cached_ = false;
|
| }
|
|
|
|
|