| Index: lib/dom/frog/dom_frog.dart
|
| diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
|
| index 1ca7973d5f3cf6b871e7a25abf72fff97f7d654c..6f318e291c2dac21a4417d6007a45024b1fb6f1c 100644
|
| --- a/lib/dom/frog/dom_frog.dart
|
| +++ b/lib/dom/frog/dom_frog.dart
|
| @@ -142,14 +142,10 @@ class _AudioContextJs extends _DOMTypeJs implements AudioContext native "*AudioC
|
|
|
| _MediaElementAudioSourceNodeJs createMediaElementSource(_HTMLMediaElementJs mediaElement) native;
|
|
|
| - _OscillatorJs createOscillator() native;
|
| -
|
| _AudioPannerNodeJs createPanner() native;
|
|
|
| _WaveShaperNodeJs createWaveShaper() native;
|
|
|
| - _WaveTableJs createWaveTable(_Float32ArrayJs real, _Float32ArrayJs imag) native;
|
| -
|
| void decodeAudioData(_ArrayBufferJs audioData, AudioBufferCallback successCallback, [AudioBufferCallback errorCallback = null]) native;
|
|
|
| void startRendering() native;
|
| @@ -1356,8 +1352,6 @@ class _DOMWindowJs extends _EventTargetJs implements DOMWindow native "@*DOMWind
|
|
|
| _DOMWindowJs open(String url, String name, [String options = null]) native;
|
|
|
| - _DatabaseJs openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
|
| -
|
| void postMessage(Dynamic message, String targetOrigin, [List messagePorts = null]) native;
|
|
|
| void print() native;
|
| @@ -5587,27 +5581,6 @@ class _OperationNotAllowedExceptionJs extends _DOMTypeJs implements OperationNot
|
| String toString() native;
|
| }
|
|
|
| -class _OscillatorJs extends _AudioSourceNodeJs implements Oscillator native "*Oscillator" {
|
| -
|
| - 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 _AudioParamJs detune;
|
| -
|
| - final _AudioParamJs frequency;
|
| -
|
| - int type;
|
| -
|
| - void setWaveTable(_WaveTableJs waveTable) native;
|
| -}
|
| -
|
| class _OverflowEventJs extends _EventJs implements OverflowEvent native "*OverflowEvent" {
|
|
|
| static final int BOTH = 2;
|
| @@ -10328,9 +10301,6 @@ class _WaveShaperNodeJs extends _AudioNodeJs implements WaveShaperNode native "*
|
| _Float32ArrayJs curve;
|
| }
|
|
|
| -class _WaveTableJs extends _DOMTypeJs implements WaveTable native "*WaveTable" {
|
| -}
|
| -
|
| class _WebGLActiveInfoJs extends _DOMTypeJs implements WebGLActiveInfo native "*WebGLActiveInfo" {
|
|
|
| final String name;
|
| @@ -11138,8 +11108,6 @@ class _WebGLRenderingContextJs extends _CanvasRenderingContextJs implements WebG
|
|
|
| Object getShaderParameter(_WebGLShaderJs shader, int pname) native;
|
|
|
| - _WebGLShaderPrecisionFormatJs getShaderPrecisionFormat(int shadertype, int precisiontype) native;
|
| -
|
| String getShaderSource(_WebGLShaderJs shader) native;
|
|
|
| Object getTexParameter(int target, int pname) native;
|
| @@ -11276,15 +11244,6 @@ class _WebGLRenderingContextJs extends _CanvasRenderingContextJs implements WebG
|
| class _WebGLShaderJs extends _DOMTypeJs implements WebGLShader native "*WebGLShader" {
|
| }
|
|
|
| -class _WebGLShaderPrecisionFormatJs extends _DOMTypeJs implements WebGLShaderPrecisionFormat native "*WebGLShaderPrecisionFormat" {
|
| -
|
| - final int precision;
|
| -
|
| - final int rangeMax;
|
| -
|
| - final int rangeMin;
|
| -}
|
| -
|
| class _WebGLTextureJs extends _DOMTypeJs implements WebGLTexture native "*WebGLTexture" {
|
| }
|
|
|
| @@ -11628,10 +11587,6 @@ class _WorkerContextJs extends _DOMTypeJs implements WorkerContext native "*Work
|
|
|
| void importScripts() native;
|
|
|
| - _DatabaseJs openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
|
| -
|
| - _DatabaseSyncJs openDatabaseSync(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
|
| -
|
| void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
|
|
| int setInterval(TimeoutHandler handler, int timeout) native;
|
| @@ -12286,14 +12241,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();
|
| @@ -13730,8 +13681,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();
|
| @@ -18265,32 +18214,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;
|
| @@ -22312,14 +22235,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;
|
| @@ -23182,8 +23097,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);
|
| @@ -23330,20 +23243,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
|
| @@ -23788,10 +23687,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);
|
|
|