| Index: content/browser/devtools/devtools_http_handler_impl.cc
|
| diff --git a/content/browser/devtools/devtools_http_handler_impl.cc b/content/browser/devtools/devtools_http_handler_impl.cc
|
| index 36506a1eba5b5914e8135375e7686760b82aabeb..5856188218f8d3d67d27181c3532942f5e5d630a 100644
|
| --- a/content/browser/devtools/devtools_http_handler_impl.cc
|
| +++ b/content/browser/devtools/devtools_http_handler_impl.cc
|
| @@ -338,9 +338,9 @@ void DevToolsHttpHandlerImpl::OnHttpRequest(
|
| std::string filename = PathWithoutParams(info.path.substr(10));
|
| std::string mime_type = GetMimeType(filename);
|
|
|
| - FilePath frontend_dir = delegate_->GetDebugFrontendDir();
|
| + base::FilePath frontend_dir = delegate_->GetDebugFrontendDir();
|
| if (!frontend_dir.empty()) {
|
| - FilePath path = frontend_dir.AppendASCII(filename);
|
| + base::FilePath path = frontend_dir.AppendASCII(filename);
|
| std::string data;
|
| file_util::ReadFileToString(path, &data);
|
| server_->Send200(connection_id, data, mime_type);
|
|
|