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

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

Issue 879333002: Support buttons attribute for drag event (blink side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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: Source/core/clipboard/DataObject.cpp
diff --git a/Source/core/clipboard/DataObject.cpp b/Source/core/clipboard/DataObject.cpp
index 270192a5c837587c20c34659ecd6fd18c85d2fb1..df671b21788bc55ce932d29690cbc9ee43fe170a 100644
--- a/Source/core/clipboard/DataObject.cpp
+++ b/Source/core/clipboard/DataObject.cpp
@@ -220,13 +220,13 @@ void DataObject::addSharedBuffer(const String& name, PassRefPtr<SharedBuffer> bu
}
DataObject::DataObject()
- : m_modifierKeyState(0)
+ : m_modifiers(0)
{
}
DataObject::DataObject(const DataObject& other)
: m_itemList(other.m_itemList)
- , m_modifierKeyState(0)
+ , m_modifiers(0)
{
}

Powered by Google App Engine
This is Rietveld 408576698