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

Unified Diff: net/test/embedded_test_server/embedded_test_server.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 | « net/proxy/proxy_config_service_linux_unittest.cc ('k') | net/test/spawned_test_server/base_test_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/embedded_test_server/embedded_test_server.cc
diff --git a/net/test/embedded_test_server/embedded_test_server.cc b/net/test/embedded_test_server/embedded_test_server.cc
index 9cdf21bfc857646d411760e74e2742e5345bc71e..9175d6ca894fdb85a89e47560088d2f582a6f10f 100644
--- a/net/test/embedded_test_server/embedded_test_server.cc
+++ b/net/test/embedded_test_server/embedded_test_server.cc
@@ -65,7 +65,7 @@ scoped_ptr<HttpResponse> HandleFileRequest(
base::FilePath headers_path(
file_path.AddExtension(FILE_PATH_LITERAL("mock-http-headers")));
- if (file_util::PathExists(headers_path)) {
+ if (base::PathExists(headers_path)) {
std::string headers_contents;
if (!file_util::ReadFileToString(headers_path, &headers_contents))
return scoped_ptr<HttpResponse>();
« no previous file with comments | « net/proxy/proxy_config_service_linux_unittest.cc ('k') | net/test/spawned_test_server/base_test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698