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

Unified Diff: client/dom/frog/dom_frog.dart

Issue 9346008: Remove vestigial constructors in Frog implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | client/dom/generated/src/frog/AudioContext.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index 60ec7665803add415c727831407761514d75f304..882b488d6e395b71ed469dedf6174eafd2afb9ba 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -96,8 +96,6 @@ class _AudioChannelSplitterJs extends _AudioNodeJs implements AudioChannelSplitt
}
class _AudioContextJs extends _DOMTypeJs implements AudioContext native "*AudioContext" {
- AudioContext() native;
-
final num currentTime;
@@ -2132,8 +2130,6 @@ class _FileListJs extends _DOMTypeJs implements FileList native "*FileList" {
}
class _FileReaderJs extends _DOMTypeJs implements FileReader native "*FileReader" {
- FileReader() native;
-
static final int DONE = 2;
@@ -10821,8 +10817,6 @@ class _WebKitCSSKeyframesRuleJs extends _CSSRuleJs implements WebKitCSSKeyframes
}
class _WebKitCSSMatrixJs extends _DOMTypeJs implements WebKitCSSMatrix native "*WebKitCSSMatrix" {
- WebKitCSSMatrix([String spec]) native;
-
num a;
@@ -10945,8 +10939,6 @@ class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*
}
class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPoint" {
- WebKitPoint(num x, num y) native;
-
num x;
@@ -10961,8 +10953,6 @@ class _WebKitTransitionEventJs extends _EventJs implements WebKitTransitionEvent
}
class _WebSocketJs extends _DOMTypeJs implements WebSocket native "*WebSocket" {
- WebSocket(String url) native;
-
static final int CLOSED = 3;
@@ -11129,8 +11119,6 @@ class _WorkerNavigatorJs extends _DOMTypeJs implements WorkerNavigator native "*
}
class _XMLHttpRequestJs extends _DOMTypeJs implements XMLHttpRequest native "*XMLHttpRequest" {
- XMLHttpRequest() native;
-
static final int DONE = 4;
@@ -23325,10 +23313,6 @@ class _DOMTypeJs implements DOMType native '*DOMType' {
// 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.
-
-// These factory methods could all live in one factory provider class but dartc
-// has a bug (5399939) preventing that.
-
class _AudioContextFactoryProvider {
factory AudioContext() native '''
« no previous file with comments | « no previous file | client/dom/generated/src/frog/AudioContext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698