| Index: chrome/browser/history/history_database.cc
|
| ===================================================================
|
| --- chrome/browser/history/history_database.cc (revision 86429)
|
| +++ chrome/browser/history/history_database.cc (working copy)
|
| @@ -97,12 +97,8 @@
|
| return sql::INIT_FAILURE;
|
|
|
| #if defined(OS_MACOSX)
|
| - // Exclude the history file and its journal from backups.
|
| - base::mac::SetFileBackupExclusion(history_name, true);
|
| - FilePath::StringType history_name_string(history_name.value());
|
| - history_name_string += "-journal";
|
| - FilePath history_journal_name(history_name_string);
|
| - base::mac::SetFileBackupExclusion(history_journal_name, true);
|
| + // Exclude the history file from backups.
|
| + base::mac::SetFileBackupExclusion(history_name);
|
| #endif
|
|
|
| // Prime the cache.
|
|
|