| Index: trunk/src/content/test/plugin/plugin_geturl_test.cc
|
| ===================================================================
|
| --- trunk/src/content/test/plugin/plugin_geturl_test.cc (revision 239399)
|
| +++ trunk/src/content/test/plugin/plugin_geturl_test.cc (working copy)
|
| @@ -212,7 +212,7 @@
|
| base::FilePath path = base::FilePath(filename);
|
| #endif
|
|
|
| - test_file_ = base::OpenFile(path, "r");
|
| + test_file_ = file_util::OpenFile(path, "r");
|
| if (!test_file_) {
|
| SetError("Could not open source file");
|
| }
|
| @@ -356,7 +356,7 @@
|
| size_t bytes = fread(read_buffer, 1, sizeof(read_buffer), test_file_);
|
| if (bytes != 0)
|
| SetError("Data and source mismatch on length");
|
| - base::CloseFile(test_file_);
|
| + file_util::CloseFile(test_file_);
|
| }
|
| break;
|
| default:
|
|
|