| Index: content/common/sandbox_mac_fontloading_unittest.mm
|
| diff --git a/content/common/sandbox_mac_fontloading_unittest.mm b/content/common/sandbox_mac_fontloading_unittest.mm
|
| index 3373f6353aaa50b081be00b0cd8990bfb02382f4..da033b7645b11e35b65fe642892b76448c5b9e12 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);
|
|
|