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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 9705050: htmldartium should also use DartDomNameOfAttribute (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add release 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/scripts/systemhtml.py ('k') | client/html/release/html.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 fab25d7ec6560d7f7de3343305ef56fa041fe0f1..fa00d89d268f5b87785ca7b540f6cc92673ca0af 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -17756,7 +17756,7 @@ class _SpeechRecognitionEventImpl extends _EventImpl implements SpeechRecognitio
class _SpeechRecognitionResultImpl extends _DOMTypeBase implements SpeechRecognitionResult {
_SpeechRecognitionResultImpl._wrap(ptr) : super._wrap(ptr);
- bool get final() => _wrap(_ptr.finalValue);
+ bool get finalValue() => _wrap(_ptr.finalValue);
int get length() => _wrap(_ptr.length);
@@ -18774,9 +18774,9 @@ class _TouchListImpl extends _DOMTypeBase implements TouchList {
class _TrackElementImpl extends _ElementImpl implements TrackElement {
_TrackElementImpl._wrap(ptr) : super._wrap(ptr);
- bool get default() => _wrap(_ptr.defaultValue);
+ bool get defaultValue() => _wrap(_ptr.defaultValue);
- void set default(bool value) { _ptr.defaultValue = _unwrap(value); }
+ void set defaultValue(bool value) { _ptr.defaultValue = _unwrap(value); }
String get kind() => _wrap(_ptr.kind);
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/release/html.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698