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

Unified Diff: third_party/WebKit/Source/core/clipboard/DataTransfer.h

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/DataTransfer.h
diff --git a/third_party/WebKit/Source/core/clipboard/DataTransfer.h b/third_party/WebKit/Source/core/clipboard/DataTransfer.h
index 30c14739837d51b45e9fc1193a794967afcc56ac..aebebc806b36fce8b7aec2bc0d1c6bfb8179fdf9 100644
--- a/third_party/WebKit/Source/core/clipboard/DataTransfer.h
+++ b/third_party/WebKit/Source/core/clipboard/DataTransfer.h
@@ -47,8 +47,10 @@ class Node;
class Range;
// Used for drag and drop and copy/paste.
-// Drag and Drop: http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html
-// Clipboard API (copy/paste): http://dev.w3.org/2006/webapi/clipops/clipops.html
+// Drag and Drop:
+// http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html
+// Clipboard API (copy/paste):
+// http://dev.w3.org/2006/webapi/clipops/clipops.html
class CORE_EXPORT DataTransfer final
: public GarbageCollectedFinalized<DataTransfer>,
public ScriptWrappable {
@@ -103,10 +105,11 @@ class CORE_EXPORT DataTransfer final
bool canReadTypes() const;
bool canReadData() const;
bool canWriteData() const;
- // Note that the spec doesn't actually allow drag image modification outside the dragstart
- // event. This capability is maintained for backwards compatiblity for ports that have
- // supported this in the past. On many ports, attempting to set a drag image outside the
- // dragstart operation is a no-op anyway.
+ // Note that the spec doesn't actually allow drag image modification outside
+ // the dragstart event. This capability is maintained for backwards
+ // compatiblity for ports that have supported this in the past. On many ports,
+ // attempting to set a drag image outside the dragstart operation is a no-op
+ // anyway.
bool canSetDragImage() const;
DragOperation sourceOperation() const;
@@ -130,7 +133,8 @@ class CORE_EXPORT DataTransfer final
bool hasFileOfType(const String&) const;
bool hasStringOfType(const String&) const;
- // Instead of using this member directly, prefer to use the can*() methods above.
+ // Instead of using this member directly, prefer to use the can*() methods
+ // above.
DataTransferAccessPolicy m_policy;
String m_dropEffect;
String m_effectAllowed;
« no previous file with comments | « third_party/WebKit/Source/core/clipboard/DataObjectItem.cpp ('k') | third_party/WebKit/Source/core/clipboard/DataTransfer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698