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

Unified Diff: Source/modules/webaudio/StereoPannerNode.idl

Issue 691143007: Implement StereoPannerNode for robust stereo panning (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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: Source/modules/webaudio/StereoPannerNode.idl
diff --git a/Source/modules/webaudio/AudioDestinationNode.idl b/Source/modules/webaudio/StereoPannerNode.idl
similarity index 88%
copy from Source/modules/webaudio/AudioDestinationNode.idl
copy to Source/modules/webaudio/StereoPannerNode.idl
index e85caef35e12ea11313611a76e83bc2d36b3d372..c23fc625f0279ca9889826032663b70336d8014d 100644
--- a/Source/modules/webaudio/AudioDestinationNode.idl
+++ b/Source/modules/webaudio/StereoPannerNode.idl
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2010, Google Inc. All rights reserved.
+ * Copyright (C) 2014, Google Inc. All rights reserved.
Raymond Toy 2014/11/11 19:41:47 Use the copyright style as mentioned here: http://
hongchan 2014/11/12 00:06:54 Done for this file. Should I do the same thing on
Raymond Toy 2014/11/12 00:16:44 No. Only use the new copyright template for new fi
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -23,7 +23,10 @@
*/
[
+ NoInterfaceObject,
Conditional=WEB_AUDIO
-] interface AudioDestinationNode : AudioNode {
- readonly attribute unsigned long maxChannelCount;
-};
+] interface StereoPannerNode : AudioNode {
+
+ readonly attribute AudioParam pan;
+
+};

Powered by Google App Engine
This is Rietveld 408576698