| Index: third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/KeyboardEvent.h b/third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| index dbe10ae16052a58039c6227c270ce9708f003c1d..630c61568547c469ee39828d46b17c30dde82103 100644
|
| --- a/third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/KeyboardEvent.h
|
| @@ -38,10 +38,10 @@ class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| enum KeyLocationCode {
|
| - DOM_KEY_LOCATION_STANDARD = 0x00,
|
| - DOM_KEY_LOCATION_LEFT = 0x01,
|
| - DOM_KEY_LOCATION_RIGHT = 0x02,
|
| - DOM_KEY_LOCATION_NUMPAD = 0x03
|
| + kDomKeyLocationStandard = 0x00,
|
| + kDomKeyLocationLeft = 0x01,
|
| + kDomKeyLocationRight = 0x02,
|
| + kDomKeyLocationNumpad = 0x03
|
| };
|
|
|
| static KeyboardEvent* create()
|
|
|