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

Unified Diff: chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc

Issue 99923002: Move temp file functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/sync_file_system/local/syncable_file_operation_runner_unittest.cc
diff --git a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
index 7e7693fc81767146df0b67ba9a18af5b1189fbb9..a49b9161b1ef833ad6713c67d74110e5af18e1cb 100644
--- a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
+++ b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
@@ -126,7 +126,7 @@ class SyncableFileOperationRunnerTest : public testing::Test {
}
bool CreateTempFile(base::FilePath* path) {
- return file_util::CreateTemporaryFileInDir(dir_.path(), path);
+ return base::CreateTemporaryFileInDir(dir_.path(), path);
}
ScopedEnableSyncFSDirectoryOperation enable_directory_operation_;

Powered by Google App Engine
This is Rietveld 408576698