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

Unified Diff: webkit/browser/blob/blob_storage_context.h

Issue 29513003: Cleanup deprecated and no longer needed blob revamp stuff, deadcode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « content/public/renderer/history_item_serialization.cc ('k') | webkit/browser/blob/blob_storage_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/blob/blob_storage_context.h
diff --git a/webkit/browser/blob/blob_storage_context.h b/webkit/browser/blob/blob_storage_context.h
index ebe845091a95e0d9314a6786c13b533b1c95cff9..619e2830dbb54a1f74fccb0ecc7b8aca1eba877f 100644
--- a/webkit/browser/blob/blob_storage_context.h
+++ b/webkit/browser/blob/blob_storage_context.h
@@ -47,9 +47,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT BlobStorageContext
bool RegisterPublicBlobURL(const GURL& url, const std::string& uuid);
void RevokePublicBlobURL(const GURL& url);
- // Temporary support for mapping oldstyle blobUrls to new style uuids.
- std::string LookupUuidFromDeprecatedURL(const GURL& url);
-
private:
friend class BlobDataHandle;
friend class BlobStorageHost;
@@ -82,11 +79,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT BlobStorageContext
void IncrementBlobRefCount(const std::string& uuid);
void DecrementBlobRefCount(const std::string& uuid);
- // Temporary support for mapping old style blobUrls to new style uuids.
- void DeprecatedRegisterPrivateBlobURL(const GURL& url,
- const std::string& uuid);
- void DeprecatedRevokePrivateBlobURL(const GURL& url);
-
bool ExpandStorageItems(BlobData* target_blob_data,
BlobData* src_blob_data,
uint64 offset,
@@ -108,7 +100,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT BlobStorageContext
BlobMap blob_map_;
BlobURLMap public_blob_urls_;
- BlobURLMap deprecated_blob_urls_;
// Used to keep track of how much memory is being utitlized for blob data,
// we count only the items of TYPE_DATA which are held in memory and not
« no previous file with comments | « content/public/renderer/history_item_serialization.cc ('k') | webkit/browser/blob/blob_storage_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698