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

Unified Diff: content/public/browser/render_process_host.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/public/browser/render_process_host.h
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index 66a96eca5c6aca95d61c3ce68656669350f7c3fb..df46bdb95a448aab93b0354d60a033ee7c592417 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -23,8 +23,10 @@ class TimeDelta;
}
namespace content {
+class BlobStorageHost;
class BrowserContext;
class BrowserMessageFilter;
+class FileAPIMessageFilter;
class RenderProcessHostObserver;
class RenderWidgetHost;
class StoragePartition;
@@ -215,6 +217,9 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// have changed.
virtual void NotifyTimezoneChange() = 0;
+ // Used to coin Blobs in the browser process with correct lifetime semantics.
+ virtual BlobStorageHost* GetBlobStorageHost() const = 0;
tommycli 2014/04/29 23:29:26 Plumbing to get the BlobStorageHost.
+
// Static management functions -----------------------------------------------
// Flag to run the renderer in process. This is primarily

Powered by Google App Engine
This is Rietveld 408576698