Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1196)

Unified Diff: content/browser/plugin_browsertest.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() <<

Powered by Google App Engine
This is Rietveld 408576698