diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-03 17:55:52 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-03 17:55:52 +0000 |
commit | 03d9afc0b775748203170a27014a3ee3500aecc2 (patch) | |
tree | d911fe4a8ffa53ef58c25689011036399f327b16 /apps/app_restore_service_browsertest.cc | |
parent | e7a32a13a89efea50f38288ebeadbc3189d971de (diff) | |
download | chromium_src-03d9afc0b775748203170a27014a3ee3500aecc2.zip chromium_src-03d9afc0b775748203170a27014a3ee3500aecc2.tar.gz chromium_src-03d9afc0b775748203170a27014a3ee3500aecc2.tar.bz2 |
Move temp file functions to base namespace.
BUG=
Review URL: https://codereview.chromium.org/99923002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/app_restore_service_browsertest.cc')
-rw-r--r-- | apps/app_restore_service_browsertest.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_restore_service_browsertest.cc b/apps/app_restore_service_browsertest.cc index 381efbf3..67c007f 100644 --- a/apps/app_restore_service_browsertest.cc +++ b/apps/app_restore_service_browsertest.cc @@ -63,8 +63,8 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, FileAccessIsSavedToPrefs) { base::ScopedTempDir temp_directory; ASSERT_TRUE(temp_directory.CreateUniqueTempDir()); base::FilePath temp_file; - ASSERT_TRUE(file_util::CreateTemporaryFileInDir(temp_directory.path(), - &temp_file)); + ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_directory.path(), + &temp_file)); FileSystemChooseEntryFunction::SkipPickerAndAlwaysSelectPathForTest( &temp_file); @@ -108,8 +108,8 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_FileAccessIsRestored) { base::ScopedTempDir temp_directory; ASSERT_TRUE(temp_directory.CreateUniqueTempDir()); base::FilePath temp_file; - ASSERT_TRUE(file_util::CreateTemporaryFileInDir(temp_directory.path(), - &temp_file)); + ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_directory.path(), + &temp_file)); FileSystemChooseEntryFunction::SkipPickerAndAlwaysSelectPathForTest( &temp_file); |