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

Unified Diff: lib/dom/dom.dart

Issue 9997003: Add back @domName annotations to dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated dom and html after sync Created 8 years, 8 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 | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dom.dart
diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
index e461fd601d9124e499a1239b0a83f356d836de8a..51be7abed13ca5ee607754575a9536b3294ebd7a 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -379,14 +379,10 @@ interface AudioContext default _AudioContextFactoryProvider {
MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaElement);
- Oscillator createOscillator();
-
AudioPannerNode createPanner();
WaveShaperNode createWaveShaper();
- WaveTable createWaveTable(Float32Array real, Float32Array imag);
-
void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallback, [AudioBufferCallback errorCallback]);
void startRendering();
@@ -1823,8 +1819,6 @@ interface Window extends EventTarget {
DOMWindow open(String url, String name, [String options]);
- Database openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback]);
-
void postMessage(Dynamic message, String targetOrigin, [List messagePorts]);
void print();
@@ -6358,32 +6352,6 @@ interface OperationNotAllowedException {
// WARNING: Do not edit - generated code.
-interface Oscillator extends AudioSourceNode {
-
- static final int CUSTOM = 4;
-
- static final int SAWTOOTH = 2;
-
- static final int SINE = 0;
-
- static final int SQUARE = 1;
-
- static final int TRIANGLE = 3;
-
- final AudioParam detune;
-
- final AudioParam frequency;
-
- int type;
-
- void setWaveTable(WaveTable waveTable);
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-// WARNING: Do not edit - generated code.
-
interface OverflowEvent extends Event {
static final int BOTH = 2;
@@ -10405,14 +10373,6 @@ interface WaveShaperNode extends AudioNode {
// WARNING: Do not edit - generated code.
-interface WaveTable {
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-// WARNING: Do not edit - generated code.
-
interface WebGLActiveInfo {
final String name;
@@ -11275,8 +11235,6 @@ interface WebGLRenderingContext extends CanvasRenderingContext {
Object getShaderParameter(WebGLShader shader, int pname);
- WebGLShaderPrecisionFormat getShaderPrecisionFormat(int shadertype, int precisiontype);
-
String getShaderSource(WebGLShader shader);
Object getTexParameter(int target, int pname);
@@ -11423,20 +11381,6 @@ interface WebGLShader {
// WARNING: Do not edit - generated code.
-interface WebGLShaderPrecisionFormat {
-
- final int precision;
-
- final int rangeMax;
-
- final int rangeMin;
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// 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.
-
-// WARNING: Do not edit - generated code.
-
interface WebGLTexture {
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -11881,10 +11825,6 @@ interface WorkerGlobalScope {
void importScripts();
- Database openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback]);
-
- DatabaseSync openDatabaseSync(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback]);
-
void removeEventListener(String type, EventListener listener, [bool useCapture]);
int setInterval(TimeoutHandler handler, int timeout);
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698