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

Unified Diff: Source/WebCore/platform/PlatformMouseEvent.h

Issue 13687007: Remove PLATFORM(BLACKBERRY) support. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/platform/PlatformMouseEvent.h
diff --git a/Source/WebCore/platform/PlatformMouseEvent.h b/Source/WebCore/platform/PlatformMouseEvent.h
index 2b5b269212bcf0bc8486e11f441f7cb764fc6295..7a062e461d19f41d1b7b9ea194b174f4cbf92ce8 100644
--- a/Source/WebCore/platform/PlatformMouseEvent.h
+++ b/Source/WebCore/platform/PlatformMouseEvent.h
@@ -41,10 +41,6 @@ namespace WebCore {
// These button numbers match the ones used in the DOM API, 0 through 2, except for NoButton which isn't specified.
enum MouseButton { NoButton = -1, LeftButton, MiddleButton, RightButton };
-
-#if PLATFORM(BLACKBERRY)
- enum MouseInputMethod { PointingDevice, TouchScreen };
-#endif
class PlatformMouseEvent : public PlatformEvent {
public:
@@ -104,10 +100,6 @@ namespace WebCore {
bool didActivateWebView() const { return m_didActivateWebView; }
#endif
-#if PLATFORM(BLACKBERRY)
- PlatformMouseEvent(const IntPoint& eventPosition, const IntPoint& globalPosition, const PlatformEvent::Type, int clickCount, MouseButton, bool shiftKey, bool ctrlKey, bool altKey, MouseInputMethod = PointingDevice);
- MouseInputMethod inputMethod() const { return m_inputMethod; }
-#endif
protected:
IntPoint m_position;
IntPoint m_globalPosition;
@@ -122,8 +114,6 @@ namespace WebCore {
int m_eventNumber;
#elif PLATFORM(WIN)
bool m_didActivateWebView;
-#elif PLATFORM(BLACKBERRY)
- MouseInputMethod m_inputMethod;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698