| Index: third_party/WebKit/Source/core/clipboard/DataObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/clipboard/DataObject.cpp b/third_party/WebKit/Source/core/clipboard/DataObject.cpp
|
| index e2b1eacd76200aba858af36a1a5591d186414441..023c4a163beb0ea6c3ed72f51cd8986d3d3693af 100644
|
| --- a/third_party/WebKit/Source/core/clipboard/DataObject.cpp
|
| +++ b/third_party/WebKit/Source/core/clipboard/DataObject.cpp
|
| @@ -267,7 +267,8 @@ DataObject* DataObject::create(WebDragData data) {
|
| // This should never happen when dragging in.
|
| break;
|
| case WebDragData::Item::StorageTypeFileSystemFile: {
|
| - // FIXME: The file system URL may refer a user visible file, see http://crbug.com/429077
|
| + // FIXME: The file system URL may refer a user visible file, see
|
| + // http://crbug.com/429077
|
| FileMetadata fileMetadata;
|
| fileMetadata.length = item.fileSystemFileSize;
|
| dataObject->add(File::createForFileSystemFile(
|
| @@ -312,7 +313,8 @@ WebDragData DataObject::toWebDragData() {
|
| item.fileSystemURL = file->fileSystemURL();
|
| item.fileSystemFileSize = file->size();
|
| } else {
|
| - // FIXME: support dragging constructed Files across renderers, see http://crbug.com/394955
|
| + // FIXME: support dragging constructed Files across renderers, see
|
| + // http://crbug.com/394955
|
| item.storageType = WebDragData::Item::StorageTypeString;
|
| item.stringType = "text/plain";
|
| item.stringData = file->name();
|
|
|