| 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 2cc7906d33b149603b2d3d2a00369af8e7192b31..8d153a40ef2a70b603e5f0343d358fcef029e22b 100644
|
| --- a/content/browser/renderer_host/render_message_filter.h
|
| +++ b/content/browser/renderer_host/render_message_filter.h
|
| @@ -28,7 +28,6 @@
|
|
|
| struct FontDescriptor;
|
| class HostContentSettingsMap;
|
| -class Profile;
|
| class RenderWidgetHelper;
|
| struct ViewHostMsg_CreateWindow_Params;
|
| struct ViewHostMsg_CreateWorker_Params;
|
| @@ -38,6 +37,7 @@ struct WebScreenInfo;
|
| }
|
|
|
| namespace content {
|
| +class BrowserContext;
|
| class ResourceContext;
|
| }
|
|
|
| @@ -70,7 +70,7 @@ class RenderMessageFilter : public BrowserMessageFilter {
|
| // Create the filter.
|
| RenderMessageFilter(int render_process_id,
|
| PluginService* plugin_service,
|
| - Profile* profile,
|
| + content::BrowserContext* context,
|
| net::URLRequestContextGetter* request_context,
|
| RenderWidgetHelper* render_widget_helper);
|
|
|
| @@ -218,9 +218,9 @@ class RenderMessageFilter : public BrowserMessageFilter {
|
| ResourceDispatcherHost* resource_dispatcher_host_;
|
| PluginService* plugin_service_;
|
|
|
| - // The Profile associated with our renderer process. This should only be
|
| + // The context associated with our renderer process. This should only be
|
| // accessed on the UI thread!
|
| - Profile* profile_;
|
| + content::BrowserContext* context_;
|
|
|
| // Contextual information to be used for requests created here.
|
| scoped_refptr<net::URLRequestContextGetter> request_context_;
|
|
|