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

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

Issue 12653008: Fix up static analysis errors introduced by Futures CL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 134eceb15eb268c5cee5f175add0f9e86cee8ad4..7390e336357c5f0a28b87841ad9a9b9768b50d67 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -111,11 +111,8 @@ convert_to_future_members = monitored.Set(
'FileEntry.file',
'Notification.requestPermission',
'NotificationCenter.requestPermission',
- 'RTCPeerConnection.createAnswer',
- 'RTCPeerConnection.createOffer',
'RTCPeerConnection.setLocalDescription',
'RTCPeerConnection.setRemoteDescription',
- 'StorageInfo.queryUsageAndQuota',
'StorageInfo.requestQuota',
'WorkerContext.webkitResolveLocalFileSystemURL',
'WorkerContext.webkitRequestFileSystem',
@@ -309,6 +306,9 @@ renamed_html_members = monitored.Dict('htmlrenamer.renamed_html_members', {
'Node.parentElement': 'parent',
'Node.previousSibling': 'previousNode',
'Node.textContent': 'text',
+ 'RTCPeerConnection.createAnswer': '_createAnswer',
+ 'RTCPeerConnection.createOffer': '_createOffer',
+ 'StorageInfo.queryUsageAndQuota': '_queryUsageAndQuota',
'SVGComponentTransferFunctionElement.offset': 'gradientOffset',
'SVGElement.className': '$dom_svgClassName',
'SVGStopElement.offset': 'gradientOffset',

Powered by Google App Engine
This is Rietveld 408576698