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

Unified Diff: webkit/common/data_element.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/data_element.h ('k') | webkit/common/resource_request_body.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/data_element.cc
diff --git a/webkit/common/data_element.cc b/webkit/common/data_element.cc
index 504882170ae7ff63f8459aceb459b450138ce6f4..f94a4c887b6a28d3813b4ec49eebc864ac2d5c54 100644
--- a/webkit/common/data_element.cc
+++ b/webkit/common/data_element.cc
@@ -26,16 +26,6 @@ void DataElement::SetToFilePathRange(
expected_modification_time_ = expected_modification_time;
}
-void DataElement::SetToBlobUrlRange(
- const GURL& blob_url,
- uint64 offset, uint64 length) {
- type_ = TYPE_BLOB;
- blob_url_ = blob_url;
- offset_ = offset;
- length_ = length;
- blob_uuid_.clear();
-}
-
void DataElement::SetToBlobRange(
const std::string& blob_uuid,
uint64 offset, uint64 length) {
@@ -43,7 +33,6 @@ void DataElement::SetToBlobRange(
blob_uuid_ = blob_uuid;
offset_ = offset;
length_ = length;
- blob_url_ = GURL();
}
void DataElement::SetToFileSystemUrlRange(
« no previous file with comments | « webkit/common/data_element.h ('k') | webkit/common/resource_request_body.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698