| Index: chrome/browser/bookmarks/bookmark_storage.cc
|
| diff --git a/chrome/browser/bookmarks/bookmark_storage.cc b/chrome/browser/bookmarks/bookmark_storage.cc
|
| index b7b2ce19bb7cc55448f6b6d8a77897f2950d21e0..8e9e3a3a56fcadff6cac75290468ccaf050af2c2 100644
|
| --- a/chrome/browser/bookmarks/bookmark_storage.cc
|
| +++ b/chrome/browser/bookmarks/bookmark_storage.cc
|
| @@ -33,7 +33,7 @@ const int kSaveDelayMS = 2500;
|
|
|
| void BackupCallback(const base::FilePath& path) {
|
| base::FilePath backup_path = path.ReplaceExtension(kBackupExtension);
|
| - file_util::CopyFile(path, backup_path);
|
| + base::CopyFile(path, backup_path);
|
| }
|
|
|
| // Adds node to the model's index, recursing through all children as well.
|
|
|