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

Unified Diff: Platform/chromium/public/WebBlobRegistry.h

Issue 11192017: ********** WebCore blob hacking (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 8 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: Platform/chromium/public/WebBlobRegistry.h
===================================================================
--- Platform/chromium/public/WebBlobRegistry.h (revision 132804)
+++ Platform/chromium/public/WebBlobRegistry.h (working copy)
@@ -36,14 +36,21 @@
namespace WebKit {
class WebBlobData;
+class WebString;
class WebURL;
class WebBlobRegistry {
public:
- WEBKIT_EXPORT static WebBlobRegistry* create();
-
virtual ~WebBlobRegistry() { }
+ virtual void registerBlobData(const WebString& uuid, WebBlobData&) { }
+ virtual void addBlobDataRef(const WebString& uuid) { }
+ virtual void removeBlobDataRef(const WebString& uuid) { }
+ virtual void registerPublicBlobURL(const WebURL&, const WebString& uuid) { }
+ virtual void revokePublicBlobURL(const WebURL&) { }
+
+ // DEPRECATED ---------
+
// Registers a blob URL referring to the specified blob data.
virtual void registerBlobURL(const WebURL&, WebBlobData&) = 0;
« no previous file with comments | « no previous file | WebCore/Modules/indexeddb/IDBObjectStore.cpp » ('j') | WebCore/platform/network/BlobRegistry.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698