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

Unified Diff: third_party/WebKit/Source/build/scripts/make_event_factory.py

Issue 2133983003: Remove SVGZoomEvent interface and onzoom attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove SVGZoomEvent.idl Created 4 years, 5 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
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 9ffcfb0b3730b55d1cc40212c9ab305017798912..a98b31c8cd2e9e6470b6635ee5c0f2004ccc449c 100755
--- a/third_party/WebKit/Source/build/scripts/make_event_factory.py
+++ b/third_party/WebKit/Source/build/scripts/make_event_factory.py
@@ -69,8 +69,7 @@ def create_event_whitelist(name):
def create_event_deprecate_list(name):
davve 2016/07/12 09:36:38 I suggest removing the create_event_deprecate_list
Shanmuga Pandi 2016/07/12 13:06:10 Done.
- return (name == 'SVGZoomEvent'
- or name == 'SVGZoomEvents')
+ return False
def measure_name(name):
@@ -78,8 +77,6 @@ def measure_name(name):
def deprecate_name(name):
davve 2016/07/12 09:36:38 And this too, of course.
Shanmuga Pandi 2016/07/12 13:06:11 Done.
- if (name.startswith('SVGZoomEvent')):
- return 'SVGZoomEvent'
return None

Powered by Google App Engine
This is Rietveld 408576698