diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 23:11:12 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 23:11:12 +0000 |
commit | b9b4a5729940325f9ac2bac2e9a50a5e8f7dcbb1 (patch) | |
tree | c340bd113fa8067f7ff2d06a6c74c93d21137e83 /content/common/sandbox_mac_fontloading_unittest.mm | |
parent | 3ae4c4256483e50b325ef0d5f8d6ecd153fa5f4a (diff) | |
download | chromium_src-b9b4a5729940325f9ac2bac2e9a50a5e8f7dcbb1.zip chromium_src-b9b4a5729940325f9ac2bac2e9a50a5e8f7dcbb1.tar.gz chromium_src-b9b4a5729940325f9ac2bac2e9a50a5e8f7dcbb1.tar.bz2 |
Move ScopedFILE to base namespace and scoped_file.h
R=viettrungluu@chromium.org
Review URL: https://codereview.chromium.org/196073002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/sandbox_mac_fontloading_unittest.mm')
-rw-r--r-- | content/common/sandbox_mac_fontloading_unittest.mm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/common/sandbox_mac_fontloading_unittest.mm b/content/common/sandbox_mac_fontloading_unittest.mm index 3373f63..da033b7 100644 --- a/content/common/sandbox_mac_fontloading_unittest.mm +++ b/content/common/sandbox_mac_fontloading_unittest.mm @@ -5,6 +5,7 @@ #import <Cocoa/Cocoa.h> #include "base/file_util.h" +#include "base/files/scoped_file.h" #include "base/logging.h" #include "base/mac/scoped_cftyperef.h" #include "base/memory/scoped_ptr.h" @@ -105,7 +106,7 @@ TEST_F(MacSandboxTest, FontLoadingTest) { base::FilePath temp_file_path; FILE* temp_file = base::CreateAndOpenTemporaryFile(&temp_file_path); ASSERT_TRUE(temp_file); - file_util::ScopedFILE temp_file_closer(temp_file); + base::ScopedFILE temp_file_closer(temp_file); NSFont* srcFont = [NSFont fontWithName:@"Geeza Pro" size:16.0]; FontDescriptor descriptor(srcFont); |