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

Unified Diff: content/common/webkitplatformsupport_impl.h

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « content/common/resource_messages.cc ('k') | content/common/webkitplatformsupport_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/webkitplatformsupport_impl.h
===================================================================
--- content/common/webkitplatformsupport_impl.h (revision 183651)
+++ content/common/webkitplatformsupport_impl.h (working copy)
@@ -12,6 +12,7 @@
namespace content {
class GpuChannelHostFactory;
+class ThreadSafeSender;
// This is a specialization of WebKitPlatformSupportImpl that implements the
// embedder functions in terms of ContentClient.
@@ -37,12 +38,19 @@
webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE;
virtual WebKit::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
const WebKit::WebGraphicsContext3D::Attributes& attributes);
+ virtual WebKit::WebBlobRegistry* blobRegistry();
static void SetOffscreenContextFactoryForTest(
OffscreenContextFactory factory);
protected:
virtual GpuChannelHostFactory* GetGpuChannelHostFactory();
+ ThreadSafeSender* thread_safe_sender() { return thread_safe_sender_.get(); }
+
+
+ private:
+ scoped_refptr<ThreadSafeSender> thread_safe_sender_;
+ scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
};
} // namespace content
« no previous file with comments | « content/common/resource_messages.cc ('k') | content/common/webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698