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

Unified Diff: chrome/test/perf/rendering/throughput_tests.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
« no previous file with comments | « chrome/test/nacl/nacl_browsertest_util.cc ('k') | chrome/test/perf/shutdown_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/rendering/throughput_tests.cc
diff --git a/chrome/test/perf/rendering/throughput_tests.cc b/chrome/test/perf/rendering/throughput_tests.cc
index cbce083889537b616c50fb94141173b2257aea7e..e54c2241bfac2ae190228295598df599b152d167 100644
--- a/chrome/test/perf/rendering/throughput_tests.cc
+++ b/chrome/test/perf/rendering/throughput_tests.cc
@@ -271,7 +271,7 @@ class ThroughputTest : public BrowserPerfTest {
test_path = test_path.Append(FILE_PATH_LITERAL("throughput"));
test_path = test_path.AppendASCII(test_name);
test_path = test_path.Append(FILE_PATH_LITERAL("index.html"));
- ASSERT_TRUE(file_util::PathExists(test_path))
+ ASSERT_TRUE(base::PathExists(test_path))
<< "Missing test file: " << test_path.value();
gurl_ = net::FilePathToFileURL(test_path);
@@ -286,7 +286,7 @@ class ThroughputTest : public BrowserPerfTest {
test_path = test_path.Append(FILE_PATH_LITERAL("perf"));
test_path = test_path.Append(FILE_PATH_LITERAL("canvas_bench"));
test_path = test_path.AppendASCII(test_name + ".html");
- ASSERT_TRUE(file_util::PathExists(test_path))
+ ASSERT_TRUE(base::PathExists(test_path))
<< "Missing test file: " << test_path.value();
gurl_ = net::FilePathToFileURL(test_path);
« no previous file with comments | « chrome/test/nacl/nacl_browsertest_util.cc ('k') | chrome/test/perf/shutdown_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698