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

Unified Diff: trunk/src/chrome/browser/importer/firefox_profile_lock_unittest.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
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: trunk/src/chrome/browser/importer/firefox_profile_lock_unittest.cc
===================================================================
--- trunk/src/chrome/browser/importer/firefox_profile_lock_unittest.cc (revision 239399)
+++ trunk/src/chrome/browser/importer/firefox_profile_lock_unittest.cc (working copy)
@@ -70,9 +70,9 @@
test_path.Append(FirefoxProfileLock::kLockFileName);
// Create the orphaned lock file.
- FILE* lock_file = base::OpenFile(lock_file_path, "w");
+ FILE* lock_file = file_util::OpenFile(lock_file_path, "w");
ASSERT_TRUE(lock_file);
- base::CloseFile(lock_file);
+ file_util::CloseFile(lock_file);
EXPECT_TRUE(base::PathExists(lock_file_path));
scoped_ptr<FirefoxProfileLock> lock;
« no previous file with comments | « trunk/src/chrome/browser/extensions/sandboxed_unpacker.cc ('k') | trunk/src/chrome/browser/net/net_log_temp_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698