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

Unified Diff: content/browser/devtools/devtools_http_handler_impl.cc

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
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);
« no previous file with comments | « content/browser/child_process_security_policy_unittest.cc ('k') | content/browser/devtools/devtools_http_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698