Index: webkit/browser/blob/blob_storage_host.h |
diff --git a/webkit/browser/blob/blob_storage_host.h b/webkit/browser/blob/blob_storage_host.h |
index 890db3a74482fe722f3fb0baea6afd0bc831544e..5296ae105e87935a223e8b6be535d8adec3bed10 100644 |
--- a/webkit/browser/blob/blob_storage_host.h |
+++ b/webkit/browser/blob/blob_storage_host.h |
@@ -47,13 +47,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT BlobStorageHost { |
const std::string& uuid) WARN_UNUSED_RESULT; |
bool RevokePublicBlobURL(const GURL& blob_url) WARN_UNUSED_RESULT; |
- // Temporary support for mapping old style private blob urls to uuids. |
- void DeprecatedRegisterBlobURL(const GURL& private_url, |
- const std::string& uuid); |
- void DeprecatedCloneBlobURL(const GURL& url, |
- const GURL& src_private_url); |
- void DeprecatedRevokeBlobURL(const GURL& url); |
- |
private: |
typedef std::map<std::string, int> BlobReferenceMap; |
@@ -68,9 +61,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT BlobStorageHost { |
// The set of public blob urls coined by this consumer. |
std::set<GURL> public_blob_urls_; |
- // And private deprecated blob urls. |
- std::set<GURL> private_blob_urls_; |
- |
base::WeakPtr<BlobStorageContext> context_; |
DISALLOW_COPY_AND_ASSIGN(BlobStorageHost); |