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

Side by Side Diff: client/dom/generated/monkey_dom.js

Issue 8872040: JavaScriptAudioNode is an EventTarget. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/frog/frog_dom.dart ('k') | client/dom/generated/src/frog/JavaScriptAudioNode.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated Dart DOM implementation. 6 // Auto-generated Dart DOM implementation.
7 7
8 function DOM$EnsureDartNull(value) { 8 function DOM$EnsureDartNull(value) {
9 return value === null ? (void 0) : value; 9 return value === null ? (void 0) : value;
10 } 10 }
(...skipping 3703 matching lines...) Expand 10 before | Expand all | Expand 10 after
3714 c.prototype.ASSIGN_INDEX$operator = function(k, v) { this[k] = v; }; 3714 c.prototype.ASSIGN_INDEX$operator = function(k, v) { this[k] = v; };
3715 } 3715 }
3716 DOM$fixMembers(c, ['subarray']); 3716 DOM$fixMembers(c, ['subarray']);
3717 c.$implements$Int8Array$Dart = 1; 3717 c.$implements$Int8Array$Dart = 1;
3718 c.$implements$ArrayBufferView$Dart = 1; 3718 c.$implements$ArrayBufferView$Dart = 1;
3719 } 3719 }
3720 function DOM$fixClass$JavaScriptAudioNode(c) { 3720 function DOM$fixClass$JavaScriptAudioNode(c) {
3721 if (c.prototype) { 3721 if (c.prototype) {
3722 c.prototype.bufferSize$getter = function() { return DOM$EnsureDartNull(this. bufferSize); }; 3722 c.prototype.bufferSize$getter = function() { return DOM$EnsureDartNull(this. bufferSize); };
3723 } 3723 }
3724 DOM$fixMembers(c, [
3725 'addEventListener',
3726 'dispatchEvent',
3727 'removeEventListener']);
3724 c.$implements$JavaScriptAudioNode$Dart = 1; 3728 c.$implements$JavaScriptAudioNode$Dart = 1;
3725 c.$implements$AudioNode$Dart = 1; 3729 c.$implements$AudioNode$Dart = 1;
3730 c.$implements$EventTarget$Dart = 1;
3726 } 3731 }
3727 function DOM$fixClass$JavaScriptCallFrame(c) { 3732 function DOM$fixClass$JavaScriptCallFrame(c) {
3728 if (c.prototype) { 3733 if (c.prototype) {
3729 c.prototype.caller$getter = function() { return DOM$EnsureDartNull(this.call er); }; 3734 c.prototype.caller$getter = function() { return DOM$EnsureDartNull(this.call er); };
3730 c.prototype.column$getter = function() { return DOM$EnsureDartNull(this.colu mn); }; 3735 c.prototype.column$getter = function() { return DOM$EnsureDartNull(this.colu mn); };
3731 c.prototype.functionName$getter = function() { return DOM$EnsureDartNull(thi s.functionName); }; 3736 c.prototype.functionName$getter = function() { return DOM$EnsureDartNull(thi s.functionName); };
3732 c.prototype.line$getter = function() { return DOM$EnsureDartNull(this.line); }; 3737 c.prototype.line$getter = function() { return DOM$EnsureDartNull(this.line); };
3733 c.prototype.scopeChain$getter = function() { return DOM$EnsureDartNull(this. scopeChain); }; 3738 c.prototype.scopeChain$getter = function() { return DOM$EnsureDartNull(this. scopeChain); };
3734 c.prototype.sourceID$getter = function() { return DOM$EnsureDartNull(this.so urceID); }; 3739 c.prototype.sourceID$getter = function() { return DOM$EnsureDartNull(this.so urceID); };
3735 c.prototype.type$getter = function() { return DOM$EnsureDartNull(this.type); }; 3740 c.prototype.type$getter = function() { return DOM$EnsureDartNull(this.type); };
(...skipping 6620 matching lines...) Expand 10 before | Expand all | Expand 10 after
10356 function native__NativeDomGlobalProperties_getWindow() { 10361 function native__NativeDomGlobalProperties_getWindow() {
10357 // TODO: Should the window be obtained from an isolate? 10362 // TODO: Should the window be obtained from an isolate?
10358 return window; 10363 return window;
10359 } 10364 }
10360 10365
10361 // Declared in src/GlobalProperties.dart 10366 // Declared in src/GlobalProperties.dart
10362 function native__NativeDomGlobalProperties_getDocument() { 10367 function native__NativeDomGlobalProperties_getDocument() {
10363 // TODO: Should the window be obtained from an isolate? 10368 // TODO: Should the window be obtained from an isolate?
10364 return window.document; 10369 return window.document;
10365 } 10370 }
OLDNEW
« no previous file with comments | « client/dom/frog/frog_dom.dart ('k') | client/dom/generated/src/frog/JavaScriptAudioNode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698