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

Unified Diff: webkit/common/blob/blob_data.cc

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 | « webkit/common/blob/blob_data.h ('k') | webkit/common/data_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/blob/blob_data.cc
diff --git a/webkit/common/blob/blob_data.cc b/webkit/common/blob/blob_data.cc
index 0934b2a2d95ddcf4032a77207541c9b9a5d9d1a9..368186195163ad219c0705a0625e09c1e7bb70d6 100644
--- a/webkit/common/blob/blob_data.cc
+++ b/webkit/common/blob/blob_data.cc
@@ -33,12 +33,6 @@ void BlobData::AppendFile(const base::FilePath& file_path,
expected_modification_time);
}
-void BlobData::AppendBlob(const GURL& blob_url, uint64 offset, uint64 length) {
- DCHECK_GT(length, 0ul);
- items_.push_back(Item());
- items_.back().SetToBlobUrlRange(blob_url, offset, length);
-}
-
void BlobData::AppendBlob(const std::string& uuid,
uint64 offset, uint64 length) {
DCHECK_GT(length, 0ul);
« no previous file with comments | « webkit/common/blob/blob_data.h ('k') | webkit/common/data_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698