Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4816)

Unified Diff: chrome/browser/history/thumbnail_database.cc

Issue 6990066: Mac TimeMachine File Exclusions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/thumbnail_database.cc
===================================================================
--- chrome/browser/history/thumbnail_database.cc (revision 86429)
+++ chrome/browser/history/thumbnail_database.cc (working copy)
@@ -66,12 +66,8 @@
transaction.Begin();
#if defined(OS_MACOSX)
- // Exclude the thumbnails file and its journal from backups.
+ // Exclude the thumbnails file (and its journal) from backups.
Mark Mentovai 2011/05/25 01:14:35 In chrome/browser/history/history_database.cc, you
mrossetti 2011/05/26 21:02:40 I changed this comment.
base::mac::SetFileBackupExclusion(db_name, true);
- FilePath::StringType db_name_string(db_name.value());
- db_name_string += "-journal";
- FilePath db_journal_name(db_name_string);
- base::mac::SetFileBackupExclusion(db_journal_name, true);
#endif
// Create the tables.

Powered by Google App Engine
This is Rietveld 408576698