| Index: webkit/glue/webdropdata.cc
|
| diff --git a/webkit/glue/webdropdata.cc b/webkit/glue/webdropdata.cc
|
| index 02c1a4c70e7b8e40f6662167d2fd0fc6cc3a2a5f..0a06ac31be90f2a2c5bd9461f0dba5843531e328 100644
|
| --- a/webkit/glue/webdropdata.cc
|
| +++ b/webkit/glue/webdropdata.cc
|
| @@ -15,13 +15,8 @@ using WebKit::WebDragData;
|
| using WebKit::WebString;
|
| using WebKit::WebVector;
|
|
|
| -WebDropData::WebDropData(int32 drag_identity)
|
| - : identity(drag_identity) {
|
| -}
|
| -
|
| WebDropData::WebDropData(const WebDragData& drag_data)
|
| - : identity(0),
|
| - url(drag_data.url()),
|
| + : url(drag_data.url()),
|
| url_title(drag_data.urlTitle()),
|
| download_metadata(drag_data.downloadMetadata()),
|
| file_extension(drag_data.fileExtension()),
|
| @@ -40,8 +35,7 @@ WebDropData::WebDropData(const WebDragData& drag_data)
|
| file_contents.assign(contents.data(), contents.size());
|
| }
|
|
|
| -WebDropData::WebDropData()
|
| - : identity(0) {
|
| +WebDropData::WebDropData() {
|
| }
|
|
|
| WebDropData::~WebDropData() {
|
|
|