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

Unified Diff: third_party/WebKit/Source/core/clipboard/DataObject.cpp

Issue 2393013002: reflow comments in core/{clipboard,streams,testing,timing} (Closed)
Patch Set: comments (heh!) Created 4 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
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();
« no previous file with comments | « third_party/WebKit/Source/core/clipboard/DataObject.h ('k') | third_party/WebKit/Source/core/clipboard/DataObjectItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698