| Index: trunk/src/content/common/gpu/client/gl_helper_benchmark.cc
|
| ===================================================================
|
| --- trunk/src/content/common/gpu/client/gl_helper_benchmark.cc (revision 239399)
|
| +++ trunk/src/content/common/gpu/client/gl_helper_benchmark.cc (working copy)
|
| @@ -102,11 +102,11 @@
|
| std::vector<gfx::PNGCodec::Comment>(),
|
| &compressed));
|
| ASSERT_TRUE(compressed.size());
|
| - FILE* f = base::OpenFile(filename, "wb");
|
| + FILE* f = file_util::OpenFile(filename, "wb");
|
| ASSERT_TRUE(f);
|
| ASSERT_EQ(fwrite(&*compressed.begin(), 1, compressed.size(), f),
|
| compressed.size());
|
| - base::CloseFile(f);
|
| + file_util::CloseFile(f);
|
| }
|
|
|
| scoped_ptr<webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl>
|
|
|