| Index: third_party/WebKit/Source/platform/PlatformKeyboardEvent.cpp
|
| diff --git a/third_party/WebKit/Source/platform/PlatformKeyboardEvent.cpp b/third_party/WebKit/Source/platform/PlatformKeyboardEvent.cpp
|
| index 191cba1a336831ae95c1ad4c7dceafac7e66d0f3..0d7cf82d21d0589350f84bec28e35a5aa29ad9a9 100644
|
| --- a/third_party/WebKit/Source/platform/PlatformKeyboardEvent.cpp
|
| +++ b/third_party/WebKit/Source/platform/PlatformKeyboardEvent.cpp
|
| @@ -30,8 +30,6 @@
|
| #include <windows.h>
|
| #elif OS(MACOSX)
|
| #import <Carbon/Carbon.h>
|
| -#else
|
| -#include "platform/NotImplemented.h"
|
| #endif
|
|
|
| namespace blink {
|
| @@ -83,7 +81,7 @@ bool PlatformKeyboardEvent::currentCapsLockState()
|
| #elif OS(MACOSX)
|
| return GetCurrentKeyModifiers() & alphaLock;
|
| #else
|
| - notImplemented();
|
| + NOTIMPLEMENTED();
|
| return false;
|
| #endif
|
| case OverrideCapsLockState::On:
|
| @@ -116,7 +114,7 @@ PlatformEvent::Modifiers PlatformKeyboardEvent::getCurrentModifierState()
|
| modifiers |= MetaKey;
|
| #else
|
| // See https://crbug.com/538289
|
| - notImplemented();
|
| + NOTIMPLEMENTED();
|
| #endif
|
| return static_cast<Modifiers>(modifiers);
|
| }
|
|
|