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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioNode.idl

Issue 2347803002: Drop empty [] for dictionaries and interfaces in IDL files (Closed)
Patch Set: fix p_ExtendedAttributeList Created 4 years, 3 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
Index: third_party/WebKit/Source/modules/webaudio/AudioNode.idl
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioNode.idl b/third_party/WebKit/Source/modules/webaudio/AudioNode.idl
index 052c6a0268b9f72a37da31922e5d894e0e084f66..5e6545d34b6d581c9d8168203c18710c3b6362a9 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioNode.idl
+++ b/third_party/WebKit/Source/modules/webaudio/AudioNode.idl
@@ -35,8 +35,7 @@ enum ChannelInterpretation {
// http://webaudio.github.io/web-audio-api/#idl-def-AudioNode
-[
-] interface AudioNode : EventTarget {
+interface AudioNode : EventTarget {
[RaisesException, MeasureAs=AudioNodeConnectToAudioNode] AudioNode connect(AudioNode destination, optional unsigned long output = 0, optional unsigned long input = 0);
[RaisesException, MeasureAs=AudioNodeConnectToAudioParam] void connect(AudioParam destination, optional unsigned long output = 0);
void disconnect();

Powered by Google App Engine
This is Rietveld 408576698