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

Unified Diff: Source/platform/PlatformMouseEvent.h

Issue 765203002: Remove PlatformMouseEvent::m_modifierFlags member. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/web/ChromeClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PlatformMouseEvent.h
diff --git a/Source/platform/PlatformMouseEvent.h b/Source/platform/PlatformMouseEvent.h
index 488bd0c211c910e5137fe452603608f3484de634..74b30d344bf822167978fd9f3f81611f61f41c9b 100644
--- a/Source/platform/PlatformMouseEvent.h
+++ b/Source/platform/PlatformMouseEvent.h
@@ -48,7 +48,6 @@ public:
, m_button(NoButton)
, m_clickCount(0)
, m_synthesized(RealOrIndistinguishable)
- , m_modifierFlags(0)
{
}
@@ -59,7 +58,6 @@ public:
, m_button(button)
, m_clickCount(clickCount)
, m_synthesized(RealOrIndistinguishable)
- , m_modifierFlags(0)
{
}
@@ -70,7 +68,6 @@ public:
, m_button(button)
, m_clickCount(clickCount)
, m_synthesized(synthesized)
- , m_modifierFlags(0)
{
}
@@ -81,7 +78,6 @@ public:
, m_button(button)
, m_clickCount(clickCount)
, m_synthesized(synthesized)
- , m_modifierFlags(0)
{
}
@@ -91,7 +87,6 @@ public:
MouseButton button() const { return m_button; }
int clickCount() const { return m_clickCount; }
- unsigned modifierFlags() const { return m_modifierFlags; }
bool fromTouch() const { return m_synthesized == FromTouch; }
SyntheticEventType syntheticEventType() const { return m_synthesized; }
@@ -102,7 +97,6 @@ protected:
MouseButton m_button;
int m_clickCount;
SyntheticEventType m_synthesized;
- unsigned m_modifierFlags;
};
} // namespace blink
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698