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

Unified Diff: content/browser/devtools/devtools_http_handler_unittest.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_unittest.cc
diff --git a/content/browser/devtools/devtools_http_handler_unittest.cc b/content/browser/devtools/devtools_http_handler_unittest.cc
index 0e2e7bb0041dea874364302331346b33bc588230..b9289e949c8928ff132d16e124d2e97e346a2ab1 100644
--- a/content/browser/devtools/devtools_http_handler_unittest.cc
+++ b/content/browser/devtools/devtools_http_handler_unittest.cc
@@ -58,7 +58,9 @@ class DummyDelegate : public DevToolsHttpHandlerDelegate {
public:
virtual std::string GetDiscoveryPageHTML() OVERRIDE { return ""; }
virtual bool BundlesFrontendResources() OVERRIDE { return true; }
- virtual FilePath GetDebugFrontendDir() OVERRIDE { return FilePath(); }
+ virtual base::FilePath GetDebugFrontendDir() OVERRIDE { i
+ return base::FilePath();
+ }
virtual std::string GetPageThumbnailData(const GURL& url) { return ""; }
virtual RenderViewHost* CreateNewTarget() { return NULL; }
virtual TargetType GetTargetType(RenderViewHost*) { return kTargetTypeTab; }
« no previous file with comments | « content/browser/devtools/devtools_http_handler_impl.cc ('k') | content/browser/dom_storage/dom_storage_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698