| Index: content/browser/renderer_host/render_process_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
|
| index 4833f16c672b70dd2bb14a661ab62eb4a70a32cf..ad6a96cbe6fdbe895d723382547b0f9df21f6ec8 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -38,7 +38,9 @@ class Size;
|
|
|
| namespace content {
|
| class AudioRendererHost;
|
| +class BlobStorageHost;
|
| class BrowserDemuxerAndroid;
|
| +class FileAPIMessageFilter;
|
| class GeolocationDispatcherHost;
|
| class GpuMessageFilter;
|
| class MessagePortMessageFilter;
|
| @@ -134,6 +136,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id)
|
| OVERRIDE;
|
| virtual void NotifyTimezoneChange() OVERRIDE;
|
| + virtual BlobStorageHost* GetBlobStorageHost() const OVERRIDE;
|
|
|
| // IPC::Sender via RenderProcessHost.
|
| virtual bool Send(IPC::Message* msg) OVERRIDE;
|
| @@ -334,6 +337,9 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| // it's valid if non-NULL.
|
| GpuMessageFilter* gpu_message_filter_;
|
|
|
| + // The filter for FileAPI messages coming from the renderer.
|
| + scoped_refptr<FileAPIMessageFilter> fileapi_message_filter_;
|
| +
|
| // The filter for MessagePort messages coming from the renderer.
|
| scoped_refptr<MessagePortMessageFilter> message_port_message_filter_;
|
|
|
|
|