Index: content/browser/plugin_browsertest.cc |
diff --git a/content/browser/plugin_browsertest.cc b/content/browser/plugin_browsertest.cc |
index 0f18ae91dad82d30125cdb142e230e274be7995b..24c695ae1885fcd62408d67f4604917ef1ac4735 100644 |
--- a/content/browser/plugin_browsertest.cc |
+++ b/content/browser/plugin_browsertest.cc |
@@ -113,7 +113,7 @@ class PluginTest : public ContentBrowserTest { |
void TestPlugin(const char* filename) { |
base::FilePath path = GetTestFilePath("plugin", filename); |
- if (!file_util::PathExists(path)) { |
+ if (!base::PathExists(path)) { |
const testing::TestInfo* const test_info = |
testing::UnitTest::GetInstance()->current_test_info(); |
LOG(INFO) << "PluginTest." << test_info->name() << |