| Index: webkit/common/data_element.cc
|
| diff --git a/webkit/common/data_element.cc b/webkit/common/data_element.cc
|
| index f94a4c887b6a28d3813b4ec49eebc864ac2d5c54..287b18d4c8d5b231ef074fc3ebab8e46b1977844 100644
|
| --- a/webkit/common/data_element.cc
|
| +++ b/webkit/common/data_element.cc
|
| @@ -46,4 +46,17 @@ void DataElement::SetToFileSystemUrlRange(
|
| expected_modification_time_ = expected_modification_time;
|
| }
|
|
|
| +#if defined(OS_ANDROID)
|
| +void DataElement::SetToContentUrlRange(
|
| + const GURL& content_url,
|
| + uint64 offset, uint64 length,
|
| + const base::Time& expected_modification_time) {
|
| + type_ = TYPE_CONTENT_URL;
|
| + content_url_ = content_url;
|
| + offset_ = offset;
|
| + length_ = length;
|
| + expected_modification_time_ = expected_modification_time;
|
| +}
|
| +#endif
|
| +
|
| } // webkit_common
|
|
|