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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 11447002: Re-trying moving AudioElement back to dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing for dartium. Created 8 years 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: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index 8a164ef645008a4fd04892728c48e939c5405cc6..60c8a9e9a0c6aaee9a5ae53b9c708adec838ec42 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -1257,6 +1257,26 @@ class ElementInstanceEvents extends Events {
// BSD-style license that can be found in the LICENSE file.
+/// @domName ElementTimeControl
+abstract class ElementTimeControl {
+
+ /// @domName ElementTimeControl.beginElement; @docsEditable true
+ void beginElement();
+
+ /// @domName ElementTimeControl.beginElementAt; @docsEditable true
+ void beginElementAt(num offset);
+
+ /// @domName ElementTimeControl.endElement; @docsEditable true
+ void endElement();
+
+ /// @domName ElementTimeControl.endElementAt; @docsEditable true
+ void endElementAt(num offset);
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
/// @domName SVGEllipseElement; @docsEditable true
class EllipseElement extends SvgElement implements Transformable, Tests, Stylable, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" {
« no previous file with comments | « sdk/lib/html/templates/html/impl/impl_AudioContext.darttemplate ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698