| Index: chrome/browser/importer/firefox_profile_lock_unittest.cc
|
| diff --git a/chrome/browser/importer/firefox_profile_lock_unittest.cc b/chrome/browser/importer/firefox_profile_lock_unittest.cc
|
| index c93d98734b8069035bcf3a370bfe96d50df3ec47..24a3259f5800f56418a6424ef62a306634e1875c 100644
|
| --- a/chrome/browser/importer/firefox_profile_lock_unittest.cc
|
| +++ b/chrome/browser/importer/firefox_profile_lock_unittest.cc
|
| @@ -70,9 +70,9 @@ TEST_F(FirefoxProfileLockTest, ProfileLockOrphaned) {
|
| test_path.Append(FirefoxProfileLock::kLockFileName);
|
|
|
| // Create the orphaned lock file.
|
| - FILE* lock_file = file_util::OpenFile(lock_file_path, "w");
|
| + FILE* lock_file = base::OpenFile(lock_file_path, "w");
|
| ASSERT_TRUE(lock_file);
|
| - file_util::CloseFile(lock_file);
|
| + base::CloseFile(lock_file);
|
| EXPECT_TRUE(base::PathExists(lock_file_path));
|
|
|
| scoped_ptr<FirefoxProfileLock> lock;
|
|
|