| Index: Source/WebCore/platform/PlatformKeyboardEvent.h
|
| diff --git a/Source/WebCore/platform/PlatformKeyboardEvent.h b/Source/WebCore/platform/PlatformKeyboardEvent.h
|
| index bf0a43f2438f7a696a00180d714c78edd8cc4397..dacd2e7b784cec89515d8ba9331b23bfaef2e9b1 100644
|
| --- a/Source/WebCore/platform/PlatformKeyboardEvent.h
|
| +++ b/Source/WebCore/platform/PlatformKeyboardEvent.h
|
| @@ -49,14 +49,6 @@ class QKeyEvent;
|
| QT_END_NAMESPACE
|
| #endif
|
|
|
| -#if PLATFORM(BLACKBERRY)
|
| -namespace BlackBerry {
|
| -namespace Platform {
|
| -class KeyboardEvent;
|
| -}
|
| -}
|
| -#endif
|
| -
|
| namespace WebCore {
|
|
|
| class PlatformKeyboardEvent : public PlatformEvent {
|
| @@ -70,9 +62,6 @@ namespace WebCore {
|
| , m_autoRepeat(false)
|
| , m_isKeypad(false)
|
| , m_isSystemKey(false)
|
| -#if PLATFORM(BLACKBERRY)
|
| - , m_unmodifiedCharacter(0)
|
| -#endif
|
| #if PLATFORM(GTK)
|
| , m_gdkEventKey(0)
|
| #endif
|
| @@ -128,10 +117,6 @@ namespace WebCore {
|
| static bool currentCapsLockState();
|
| static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
|
|
|
| -#if PLATFORM(BLACKBERRY)
|
| - unsigned unmodifiedCharacter() const { return m_unmodifiedCharacter; }
|
| -#endif
|
| -
|
| #if PLATFORM(MAC)
|
| NSEvent* macEvent() const { return m_macEvent.get(); }
|
| #endif
|
| @@ -158,10 +143,6 @@ namespace WebCore {
|
| uint32_t nativeScanCode() const;
|
| #endif
|
|
|
| -#if PLATFORM(BLACKBERRY)
|
| - PlatformKeyboardEvent(const BlackBerry::Platform::KeyboardEvent&);
|
| -#endif
|
| -
|
| protected:
|
| String m_text;
|
| String m_unmodifiedText;
|
| @@ -173,10 +154,6 @@ namespace WebCore {
|
| bool m_isKeypad;
|
| bool m_isSystemKey;
|
|
|
| -#if PLATFORM(BLACKBERRY)
|
| - unsigned m_unmodifiedCharacter;
|
| -#endif
|
| -
|
| #if PLATFORM(MAC)
|
| RetainPtr<NSEvent> m_macEvent;
|
| #endif
|
|
|