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

Unified Diff: chrome_frame/test/test_with_web_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 | « chrome_frame/test/test_scrubber.cc ('k') | chrome_frame/test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/test_with_web_server.cc
diff --git a/chrome_frame/test/test_with_web_server.cc b/chrome_frame/test/test_with_web_server.cc
index 7ffb8360b2ac035c74a163b978ac57f65de5fbe3..9c93a37709b6f2cac5fc3ec5a4cce89238777634 100644
--- a/chrome_frame/test/test_with_web_server.cc
+++ b/chrome_frame/test/test_with_web_server.cc
@@ -399,10 +399,10 @@ void MockWebServer::SendResponseHelper(
std::string headers, body;
std::string content_type;
- if (file_util::PathExists(file_path) &&
+ if (base::PathExists(file_path) &&
!file_util::DirectoryExists(file_path)) {
base::FilePath mock_http_headers(file_path.value() + L".mock-http-headers");
- if (file_util::PathExists(mock_http_headers)) {
+ if (base::PathExists(mock_http_headers)) {
headers = GetMockHttpHeaders(mock_http_headers);
content_type = http_utils::GetHttpHeaderFromHeaderList("Content-type",
headers);
« no previous file with comments | « chrome_frame/test/test_scrubber.cc ('k') | chrome_frame/test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698