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

Unified Diff: content/browser/renderer_host/render_message_filter.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
Index: content/browser/renderer_host/render_message_filter.h
diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h
index 4218fd71ebbc9971b9a470b1638d27b3dfc60e9a..3a1bdd29599e124770ae08ba74c0e0ce04068781 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -167,7 +167,7 @@ class RenderMessageFilter : public BrowserMessageFilter {
const GURL& policy_url,
const std::string& mime_type,
IPC::Message* reply_msg);
- void OnOpenChannelToPepperPlugin(const FilePath& path,
+ void OnOpenChannelToPepperPlugin(const base::FilePath& path,
IPC::Message* reply_msg);
void OnDidCreateOutOfProcessPepperInstance(
int plugin_child_id,
@@ -179,7 +179,7 @@ class RenderMessageFilter : public BrowserMessageFilter {
bool is_external);
void OnOpenChannelToPpapiBroker(int routing_id,
int request_id,
- const FilePath& path);
+ const base::FilePath& path);
void OnGenerateRoutingID(int* route_id);
void OnDownloadUrl(const IPC::Message& message,
const GURL& url,
@@ -220,10 +220,10 @@ class RenderMessageFilter : public BrowserMessageFilter {
const GURL& url,
IPC::Message* reply_msg);
void OnAsyncOpenFile(const IPC::Message& msg,
- const FilePath& path,
+ const base::FilePath& path,
int flags,
int message_id);
- void AsyncOpenFileOnFileThread(const FilePath& path,
+ void AsyncOpenFileOnFileThread(const base::FilePath& path,
int flags,
int message_id,
int routing_id);
@@ -261,7 +261,7 @@ class RenderMessageFilter : public BrowserMessageFilter {
// by the BrowserProcess, which has a wider scope than we do.
ResourceDispatcherHostImpl* resource_dispatcher_host_;
PluginServiceImpl* plugin_service_;
- FilePath profile_data_directory_;
+ base::FilePath profile_data_directory_;
// Contextual information to be used for requests created here.
scoped_refptr<net::URLRequestContextGetter> request_context_;
« no previous file with comments | « content/browser/renderer_host/pepper/pepper_message_filter.h ('k') | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698