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

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/LICENSE b/Source/modules/webaudio/StereoPannerNode.idl
similarity index 91%
copy from LICENSE
copy to Source/modules/webaudio/StereoPannerNode.idl
index 70bcb8ad118978579fa055f7ecc99604930900ce..1363f632ecca55e566df810b4a2ce03dbde1546c 100644
--- a/LICENSE
+++ b/Source/modules/webaudio/StereoPannerNode.idl
@@ -1,8 +1,5 @@
// Copyright 2014 The Chromium Authors. All rights reserved.
//
-// The Chromium Authors can be found at
-// http://src.chromium.org/svn/trunk/src/AUTHORS
-//
// Redistribution and use in source and binary forms, with or without
Raymond Toy 2014/11/12 18:06:52 The coding style indicates that the license header
hongchan 2014/11/12 22:01:43 Done.
// modification, are permitted provided that the following conditions are
// met:
@@ -28,3 +25,12 @@
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+[
+ NoInterfaceObject,
+ Conditional=WEB_AUDIO
+] interface StereoPannerNode : AudioNode {
+
+ readonly attribute AudioParam pan;
+
+};

Powered by Google App Engine
This is Rietveld 408576698