| 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);
|
|
|