| Index: third_party/WebKit/Source/build/scripts/make_event_factory.py
|
| diff --git a/third_party/WebKit/Source/build/scripts/make_event_factory.py b/third_party/WebKit/Source/build/scripts/make_event_factory.py
|
| index bc27525d52ad1e90fe79b11d5a3b7f36c9d7fe3f..d89ce5da0afdce7ec0fbfceaa201de0295d281ec 100755
|
| --- a/third_party/WebKit/Source/build/scripts/make_event_factory.py
|
| +++ b/third_party/WebKit/Source/build/scripts/make_event_factory.py
|
| @@ -53,7 +53,10 @@ def case_insensitive_matching(name):
|
| or name == 'Events'
|
| or name.startswith('UIEvent')
|
| or name.startswith('CustomEvent')
|
| - or name.startswith('MouseEvent'))
|
| + or name == 'KeyboardEvent'
|
| + or name == 'MessageEvent'
|
| + or name.startswith('MouseEvent')
|
| + or name == 'TouchEvent')
|
|
|
|
|
| class EventFactoryWriter(in_generator.Writer):
|
|
|