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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_service_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/local_file_sync_service_unittest.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
index 286c53e442f122ea46caa2cd603a6ec30a6bb8a0..6ad32ff98b4c91900faa6fa5801aa30c719a13fb 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
@@ -211,8 +211,7 @@ TEST_F(LocalFileSyncServiceTest, RemoteSyncStepsSimple) {
const int kTestFileDataSize = static_cast<int>(arraysize(kTestFileData) - 1);
base::FilePath local_path;
- ASSERT_TRUE(file_util::CreateTemporaryFileInDir(temp_dir_.path(),
- &local_path));
+ ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &local_path));
ASSERT_EQ(kTestFileDataSize,
file_util::WriteFile(local_path, kTestFileData, kTestFileDataSize));

Powered by Google App Engine
This is Rietveld 408576698