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

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

Issue 12274002: Fixing Geolocation on Firefox (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding manual test Created 7 years, 10 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: tools/dom/scripts/htmlrenamer.py
diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
index 32bb71245e7dba358323bb651af3cede0769ec15..0a50914a2c5c9fbdc3f0c6eb3d9c06c8893ae1f3 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -21,6 +21,8 @@ html_interface_renames = monitored.Dict('htmlrenamer.html_interface_renames', {
'NamedNodeMap': '_NamedNodeMap',
'NavigatorUserMediaErrorCallback': '_NavigatorUserMediaErrorCallback',
'NavigatorUserMediaSuccessCallback': '_NavigatorUserMediaSuccessCallback',
+ 'PositionCallback': '_PositionCallback',
+ 'PositionErrorCallback': '_PositionErrorCallback',
'SVGDocument': 'SvgDocument', # Manual to avoid name conflicts.
'SVGElement': 'SvgElement', # Manual to avoid name conflicts.
'SVGException': 'SvgException', # Manual of avoid conflict with Exception.
@@ -146,6 +148,9 @@ _private_html_members = monitored.Set('htmlrenamer._private_html_members', [
'Event.initEvent',
'EventTarget.addEventListener',
'EventTarget.removeEventListener',
+ 'Geolocation.clearWatch',
+ 'Geolocation.getCurrentPosition',
+ 'Geolocation.watchPosition',
'HashChangeEvent.initHashChangeEvent',
'IDBFactory.deleteDatabase',
'IDBFactory.open',

Powered by Google App Engine
This is Rietveld 408576698