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

Unified Diff: client/dom/generated/src/frog/MediaController.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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/frog/MediaController.dart
diff --git a/client/dom/generated/src/frog/MediaController.dart b/client/dom/generated/src/frog/MediaController.dart
index ce6405df6f842c7cec0ec24a47275c5f4a0bfe86..89bf34447df594b8742f40d9454cd566a8dbde4a 100644
--- a/client/dom/generated/src/frog/MediaController.dart
+++ b/client/dom/generated/src/frog/MediaController.dart
@@ -1,7 +1,7 @@
-class MediaControllerJs extends DOMTypeJs implements MediaController native "*MediaController" {
+class _MediaControllerJs extends _DOMTypeJs implements MediaController native "*MediaController" {
- TimeRangesJs get buffered() native "return this.buffered;";
+ _TimeRangesJs get buffered() native "return this.buffered;";
num get currentTime() native "return this.currentTime;";
@@ -23,9 +23,9 @@ class MediaControllerJs extends DOMTypeJs implements MediaController native "*Me
void set playbackRate(num value) native "this.playbackRate = value;";
- TimeRangesJs get played() native "return this.played;";
+ _TimeRangesJs get played() native "return this.played;";
- TimeRangesJs get seekable() native "return this.seekable;";
+ _TimeRangesJs get seekable() native "return this.seekable;";
num get volume() native "return this.volume;";
@@ -33,7 +33,7 @@ class MediaControllerJs extends DOMTypeJs implements MediaController native "*Me
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
- bool dispatchEvent(EventJs evt) native;
+ bool dispatchEvent(_EventJs evt) native;
void pause() native;
« no previous file with comments | « client/dom/generated/src/frog/LowPass2FilterNode.dart ('k') | client/dom/generated/src/frog/MediaElementAudioSourceNode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698