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

Unified Diff: third_party/WebKit/Source/core/clipboard/DataObjectItem.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/DataObjectItem.cpp
diff --git a/third_party/WebKit/Source/core/clipboard/DataObjectItem.cpp b/third_party/WebKit/Source/core/clipboard/DataObjectItem.cpp
index 60e79b1202a1849412ec45b9413437d6d86257e1..ca13837a947d5cc0d1ecc1f9f90c65d4ec97b042 100644
--- a/third_party/WebKit/Source/core/clipboard/DataObjectItem.cpp
+++ b/third_party/WebKit/Source/core/clipboard/DataObjectItem.cpp
@@ -105,9 +105,9 @@ Blob* DataObjectItem::getAsFile() const {
if (m_file)
return m_file.get();
ASSERT(m_sharedBuffer);
- // FIXME: This code is currently impossible--we never populate m_sharedBuffer when dragging
- // in. At some point though, we may need to support correctly converting a shared buffer
- // into a file.
+ // FIXME: This code is currently impossible--we never populate
+ // m_sharedBuffer when dragging in. At some point though, we may need to
+ // support correctly converting a shared buffer into a file.
return nullptr;
}
@@ -155,8 +155,9 @@ String DataObjectItem::getAsString() const {
}
bool DataObjectItem::isFilename() const {
- // FIXME: https://bugs.webkit.org/show_bug.cgi?id=81261: When we properly support File dragout,
- // we'll need to make sure this works as expected for DragDataChromium.
+ // FIXME: https://bugs.webkit.org/show_bug.cgi?id=81261: When we properly
+ // support File dragout, we'll need to make sure this works as expected for
+ // DragDataChromium.
return m_kind == FileKind && m_file;
}
« no previous file with comments | « third_party/WebKit/Source/core/clipboard/DataObjectItem.h ('k') | third_party/WebKit/Source/core/clipboard/DataTransfer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698