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

Unified Diff: chrome_frame/test/test_with_web_server.cc

Issue 19052005: Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the 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/simple_resource_loader.cc ('k') | cloud_print/virtual_driver/win/install/setup.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 9c93a37709b6f2cac5fc3ec5a4cce89238777634..06869adeff0c5418e3d8cef849010152cc9a0deb 100644
--- a/chrome_frame/test/test_with_web_server.cc
+++ b/chrome_frame/test/test_with_web_server.cc
@@ -400,7 +400,7 @@ void MockWebServer::SendResponseHelper(
std::string headers, body;
std::string content_type;
if (base::PathExists(file_path) &&
- !file_util::DirectoryExists(file_path)) {
+ !base::DirectoryExists(file_path)) {
base::FilePath mock_http_headers(file_path.value() + L".mock-http-headers");
if (base::PathExists(mock_http_headers)) {
headers = GetMockHttpHeaders(mock_http_headers);
« no previous file with comments | « chrome_frame/simple_resource_loader.cc ('k') | cloud_print/virtual_driver/win/install/setup.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698