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

Unified Diff: client/dom/generated/src/interface/AudioContext.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 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: client/dom/generated/src/interface/AudioContext.dart
diff --git a/client/dom/generated/src/interface/AudioContext.dart b/client/dom/generated/src/interface/AudioContext.dart
index f76112ed37adb27a70a15a242b8f6b4500fbbbdc..cdefb283ce45aca4b5d16f22e7d0bb17b9a37e32 100644
--- a/client/dom/generated/src/interface/AudioContext.dart
+++ b/client/dom/generated/src/interface/AudioContext.dart
@@ -8,17 +8,15 @@ interface AudioContext default _AudioContextFactoryProvider {
AudioContext();
- num get currentTime();
+ final num currentTime;
- AudioDestinationNode get destination();
+ final AudioDestinationNode destination;
- AudioListener get listener();
+ final AudioListener listener;
- EventListener get oncomplete();
+ EventListener oncomplete;
- void set oncomplete(EventListener value);
-
- num get sampleRate();
+ final num sampleRate;
RealtimeAnalyserNode createAnalyser();

Powered by Google App Engine
This is Rietveld 408576698