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

Unified Diff: tools/dom/scripts/htmleventgenerator.py

Issue 108943003: Suppressing media events from list of global events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/htmleventgenerator.py
diff --git a/tools/dom/scripts/htmleventgenerator.py b/tools/dom/scripts/htmleventgenerator.py
index 981ce876a43f36f44b13ce1711eccbfab42c3c62..00979ab270a843e8d63705b809b0b6425b45b641 100644
--- a/tools/dom/scripts/htmleventgenerator.py
+++ b/tools/dom/scripts/htmleventgenerator.py
@@ -384,7 +384,8 @@ class HtmlEventGenerator(object):
if (interface.doc_js_name == 'Window' or
interface.doc_js_name == 'Element' or
- interface.doc_js_name == 'Document'):
+ interface.doc_js_name == 'Document' or
+ interface.doc_js_name == 'GlobalEventHandlers'):
vsm 2014/01/07 18:45:22 There is also WindowEventHandlers now - do we need
media_interface = self._database.GetInterface('HTMLMediaElement')
media_events = self._GetEvents(media_interface, [])
if self._HasEvent(media_events, event_name, event_type):
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698