| Index: trunk/src/gpu/tools/compositor_model_bench/compositor_model_bench.cc
|
| ===================================================================
|
| --- trunk/src/gpu/tools/compositor_model_bench/compositor_model_bench.cc (revision 239400)
|
| +++ trunk/src/gpu/tools/compositor_model_bench/compositor_model_bench.cc (working copy)
|
| @@ -38,9 +38,7 @@
|
|
|
|
|
| using base::TimeTicks;
|
| -using file_util::CloseFile;
|
| using base::DirectoryExists;
|
| -using file_util::OpenFile;
|
| using base::PathExists;
|
| using std::queue;
|
| using std::string;
|
| @@ -275,7 +273,7 @@
|
| void DumpOutput() {
|
| LOG(INFO) << "Successfully ran " << sims_completed_.size() << " tests";
|
|
|
| - FILE* f = OpenFile(output_path_, "w");
|
| + FILE* f = base::OpenFile(output_path_, "w");
|
|
|
| if (!f) {
|
| LOG(ERROR) << "Failed to open output file " <<
|
| @@ -301,7 +299,7 @@
|
| }
|
|
|
| fputs("\t]\n}", f);
|
| - CloseFile(f);
|
| + base::CloseFile(f);
|
| }
|
|
|
| bool UpdateTestStatus() {
|
|
|