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

Unified Diff: content/browser/utility_process_host_impl.h

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
« no previous file with comments | « content/browser/tracing/tracing_ui.cc ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/utility_process_host_impl.h
diff --git a/content/browser/utility_process_host_impl.h b/content/browser/utility_process_host_impl.h
index 4922e9cc956903eae527a075d20d0e2e295a40f9..4c852584109164eeb490b077d19c0e269f574307 100644
--- a/content/browser/utility_process_host_impl.h
+++ b/content/browser/utility_process_host_impl.h
@@ -35,7 +35,7 @@ class CONTENT_EXPORT UtilityProcessHostImpl
virtual bool Send(IPC::Message* message) OVERRIDE;
virtual bool StartBatchMode() OVERRIDE;
virtual void EndBatchMode() OVERRIDE;
- virtual void SetExposedDir(const FilePath& dir) OVERRIDE;
+ virtual void SetExposedDir(const base::FilePath& dir) OVERRIDE;
virtual void DisableSandbox() OVERRIDE;
virtual void EnableZygote() OVERRIDE;
virtual const ChildProcessData& GetData() OVERRIDE;
@@ -61,7 +61,7 @@ class CONTENT_EXPORT UtilityProcessHostImpl
// and the utility process will run until EndBatchMode().
bool is_batch_mode_;
- FilePath exposed_dir_;
+ base::FilePath exposed_dir_;
// Whether to pass switches::kNoSandbox to the child.
bool no_sandbox_;
« no previous file with comments | « content/browser/tracing/tracing_ui.cc ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698