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

Unified Diff: client/html/dartium/html_dartium.dart

Issue 9701057: Rerun generator and copy html to release. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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:
Download patch
« no previous file with comments | « client/dom/frog/dom_frog.dart ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/dartium/html_dartium.dart
diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
index 65d940e2bf18296f7175a2d78b57492328991545..fab25d7ec6560d7f7de3343305ef56fa041fe0f1 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -17662,6 +17662,10 @@ class _SpanElementImpl extends _ElementImpl implements SpanElement {
class _SpeechGrammarImpl extends _DOMTypeBase implements SpeechGrammar {
_SpeechGrammarImpl._wrap(ptr) : super._wrap(ptr);
+ String get src() => _wrap(_ptr.src);
+
+ void set src(String value) { _ptr.src = _unwrap(value); }
+
num get weight() => _wrap(_ptr.weight);
void set weight(num value) { _ptr.weight = _unwrap(value); }
@@ -32861,6 +32865,8 @@ interface SpeechGrammar default _SpeechGrammarFactoryProvider {
SpeechGrammar();
+ String src;
+
num weight;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
« no previous file with comments | « client/dom/frog/dom_frog.dart ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698