| 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;
|
|
|
|
|