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

Unified Diff: chrome/test/gpu/gpu_feature_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: chrome/test/gpu/gpu_feature_browsertest.cc
diff --git a/chrome/test/gpu/gpu_feature_browsertest.cc b/chrome/test/gpu/gpu_feature_browsertest.cc
index 9223024ca21e7a3330980103c70b6abfbda642c0..f65f799df06d984b1825b9fc7b74f7c4d055f8dc 100644
--- a/chrome/test/gpu/gpu_feature_browsertest.cc
+++ b/chrome/test/gpu/gpu_feature_browsertest.cc
@@ -91,7 +91,7 @@ class GpuFeatureTest : public InProcessBrowserTest {
base::FilePath test_path;
test_path = gpu_test_dir_.Append(url);
- ASSERT_TRUE(file_util::PathExists(test_path))
+ ASSERT_TRUE(base::PathExists(test_path))
<< "Missing test file: " << test_path.value();
content::DOMMessageQueue message_queue;
@@ -494,7 +494,7 @@ IN_PROC_BROWSER_TEST_F(GpuFeatureTest, IOSurfaceReuse) {
const base::FilePath url(
FILE_PATH_LITERAL("feature_compositing_static.html"));
base::FilePath test_path = gpu_test_dir_.Append(url);
- ASSERT_TRUE(file_util::PathExists(test_path))
+ ASSERT_TRUE(base::PathExists(test_path))
<< "Missing test file: " << test_path.value();
ui_test_utils::NavigateToURL(browser(), net::FilePathToFileURL(test_path));
« no previous file with comments | « chrome/test/chromedriver/session_commands_unittest.cc ('k') | chrome/test/mini_installer_test/installer_path_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698