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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 250143002: Media Galleries API: Audio/Video attached pictures support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Create Blobs on browser-process, eliminating two IPC copies. Created 6 years, 8 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_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_;

Powered by Google App Engine
This is Rietveld 408576698