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

Unified Diff: content/common/webblobregistry_impl.h

Issue 7974011: Break large blobs into multiple ipcs during creation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/common/webblobregistry_impl.h
===================================================================
--- content/common/webblobregistry_impl.h (revision 104763)
+++ content/common/webblobregistry_impl.h (working copy)
@@ -9,6 +9,10 @@
#include "ipc/ipc_message.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebBlobRegistry.h"
+namespace base {
+class SharedMemory;
+}
+
namespace WebKit {
class WebBlobData;
class WebBlobStorageData;
@@ -29,6 +33,8 @@
virtual void unregisterBlobURL(const WebKit::WebURL& url);
private:
+ base::SharedMemory* AllocateSharedMemory(size_t buffer_size);
+
IPC::Message::Sender* sender_;
};

Powered by Google App Engine
This is Rietveld 408576698