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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl

Issue 2700233003: Remove unnecessary window WebAudio attributes (Closed)
Patch Set: Remove entries from use counter. Created 3 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | no next file » | 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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 ImplementedAs=DOMWindowWebAudio, 6 ImplementedAs=DOMWindowWebAudio,
7 ] partial interface Window { 7 ] partial interface Window {
foolip 2017/02/23 19:39:38 Oh, I didn't notice this partial interface actuall
Raymond Toy 2017/02/24 17:02:52 Done.
8 // The individual constructible AudioNodes.
9 [MeasureAs=WebAudioAnalyserNode] attribute AnalyserNodeConstructor AnalyserN ode;
10 [MeasureAs=WebAudioAudioBuffer] attribute AudioBufferConstructor AudioBuffer ;
11 [MeasureAs=WebAudioAudioBufferSourceNode] attribute AudioBufferSourceNodeCon structor AudioBufferSourceNode;
12 [MeasureAs=WebAudioBiquadFilterNode] attribute BiquadFilterNodeConstructor B iquadFilterNode;
13 [MeasureAs=WebAudioChannelMergerNode] attribute ChannelMergerNodeConstructor ChannelMergerNode;
14 [MeasureAs=WebAudioChannelSplitterNode] attribute ChannelSplitterNodeConstru ctor ChannelSplitterNode;
15 [MeasureAs=WebAudioConstantSourceNode] attribute ConstantSourceNodeConstruct or ConstantSourceNode;
16 [MeasureAs=WebAudioConvolverNode] attribute ConvolverNodeConstructor Convolv erNode;
17 [MeasureAs=WebAudioDelayNode] attribute DelayNodeConstructor DelayNode;
18 [MeasureAs=WebAudioDynamicsCompressorNode] attribute DynamicsCompressorNodeC onstructor DynamicsCompressorNode;
19 [MeasureAs=WebAudioGainNode] attribute GainNodeConstructor GainNode;
20 [MeasureAs=WebAudioIIRFilterNode] attribute IIRFilterNodeConstructor IIRFilt erNode;
21 [MeasureAs=WebAudioMediaElementAudioSourceNode] attribute MediaElementAudioS ourceNodeConstructor MediaElementAudioSourceNode;
22 [MeasureAs=WebAudioOscillatorNode] attribute OscillatorNodeConstructor Oscil latorNode;
23 [MeasureAs=WebAudioPannerNode] attribute PannerNodeConstructor PannerNode;
24 [MeasureAs=WebAudioPeriodicWave] attribute PeriodicWaveConstructor PeriodicW ave;
25 [MeasureAs=WebAudioStereoPannerNode] attribute StereoPannerNodeConstructor S tereoPannerNode;
26 [MeasureAs=WebAudioWaveShaperNode] attribute WaveShaperNodeConstructor WaveS haperNode;
27 }; 8 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698