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

Unified Diff: content/browser/ppapi_plugin_process_host.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/plugin_service_impl_browsertest.cc ('k') | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/ppapi_plugin_process_host.h
diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h
index c5b6bc17af68387b3eec6397ddc57f749bb5c0f8..01a43c960287b3e2994637b43a9e6b94024460fd 100644
--- a/content/browser/ppapi_plugin_process_host.h
+++ b/content/browser/ppapi_plugin_process_host.h
@@ -76,7 +76,7 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
static PpapiPluginProcessHost* CreatePluginHost(
const PepperPluginInfo& info,
- const FilePath& profile_data_directory,
+ const base::FilePath& profile_data_directory,
net::HostResolver* host_resolver);
static PpapiPluginProcessHost* CreateBrokerHost(
const PepperPluginInfo& info);
@@ -107,8 +107,8 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
// channel is ready or if there's an error.
void OpenChannelToPlugin(Client* client);
- const FilePath& plugin_path() const { return plugin_path_; }
- const FilePath& profile_data_directory() const {
+ const base::FilePath& plugin_path() const { return plugin_path_; }
+ const base::FilePath& profile_data_directory() const {
return profile_data_directory_;
}
@@ -120,7 +120,7 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
// Constructors for plugin and broker process hosts, respectively.
// You must call Init before doing anything else.
PpapiPluginProcessHost(const PepperPluginInfo& info,
- const FilePath& profile_data_directory,
+ const base::FilePath& profile_data_directory,
net::HostResolver* host_resolver);
PpapiPluginProcessHost();
@@ -160,10 +160,10 @@ class PpapiPluginProcessHost : public BrowserChildProcessHostDelegate,
std::queue<Client*> sent_requests_;
// Path to the plugin library.
- FilePath plugin_path_;
+ base::FilePath plugin_path_;
// Path to the top-level plugin data directory (differs based upon profile).
- FilePath profile_data_directory_;
+ base::FilePath profile_data_directory_;
const bool is_broker_;
« no previous file with comments | « content/browser/plugin_service_impl_browsertest.cc ('k') | content/browser/ppapi_plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698