| Index: webkit/base/data_element.cc
|
| ===================================================================
|
| --- webkit/base/data_element.cc (revision 171309)
|
| +++ webkit/base/data_element.cc (working copy)
|
| @@ -26,11 +26,11 @@
|
| expected_modification_time_ = expected_modification_time;
|
| }
|
|
|
| -void DataElement::SetToBlobUrlRange(
|
| - const GURL& blob_url,
|
| +void DataElement::SetToBlobRange(
|
| + const std::string& blob_uuid,
|
| uint64 offset, uint64 length) {
|
| type_ = TYPE_BLOB;
|
| - url_ = blob_url;
|
| + blob_uuid_ = blob_uuid;
|
| offset_ = offset;
|
| length_ = length;
|
| }
|
| @@ -40,7 +40,7 @@
|
| uint64 offset, uint64 length,
|
| const base::Time& expected_modification_time) {
|
| type_ = TYPE_FILE_FILESYSTEM;
|
| - url_ = filesystem_url;
|
| + filesystem_url_ = filesystem_url;
|
| offset_ = offset;
|
| length_ = length;
|
| expected_modification_time_ = expected_modification_time;
|
|
|