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

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 105622)
+++ content/common/webblobregistry_impl.h (working copy)
@@ -6,19 +6,23 @@
#define CHROME_COMMON_WEBBLOBREGISTRY_IMPL_H_
#pragma once
-#include "ipc/ipc_message.h"
+//#include "ipc/ipc_message.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebBlobRegistry.h"
+class ChildThread;
+
+namespace base {
+class SharedMemory;
+}
+
namespace WebKit {
class WebBlobData;
-class WebBlobStorageData;
-class WebString;
class WebURL;
}
class WebBlobRegistryImpl : public WebKit::WebBlobRegistry {
public:
- explicit WebBlobRegistryImpl(IPC::Message::Sender* sender);
+ explicit WebBlobRegistryImpl(ChildThread* child_thread);
virtual ~WebBlobRegistryImpl();
// See WebBlobRegistry.h for documentation on these functions.
@@ -29,7 +33,7 @@
virtual void unregisterBlobURL(const WebKit::WebURL& url);
private:
- IPC::Message::Sender* sender_;
+ ChildThread* child_thread_;
};
#endif // CHROME_COMMON_WEBBLOBREGISTRY_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698