| 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;
|
| +
|
| // Static management functions -----------------------------------------------
|
|
|
| // Flag to run the renderer in process. This is primarily
|
|
|