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

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

Issue 12220099: Remove Webkit prefix from all members and make experimental. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/systemhtml.py
diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py
index f960434674d7d21029f23ef0943997db9b670698..c40482412c7ba17430ad38ebf91a0dc0f4151489 100644
--- a/tools/dom/scripts/systemhtml.py
+++ b/tools/dom/scripts/systemhtml.py
@@ -17,6 +17,7 @@ _js_custom_members = set([
'AudioBufferSourceNode.stop',
'AudioContext.createGain',
'AudioContext.createScriptProcessor',
+ 'CanvasRenderingContext2D.lineDashOffset',
'Console.memory',
'Console.profiles',
'Console.assertCondition',
@@ -932,7 +933,8 @@ class Dart2JSBackend(HtmlDartGenerator):
TARGET=target,
PARAMS=', '.join(target_parameters))
- declaration = '%s%s %s(%s)' % (
+ declaration = '%s%s%s %s(%s)' % (
+ self._Annotations(info.type_name, info.declared_name),
'static ' if info.IsStatic() else '',
return_type,
html_name,
« no previous file with comments | « tools/dom/scripts/htmlrenamer.py ('k') | tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698