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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioParam.h

Issue 1820403002: Implement Automations for PannerNode and AutioListener (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update test because CL for min/maxValue AudioParam landed Created 4 years, 7 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/AudioParam.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioParam.h b/third_party/WebKit/Source/modules/webaudio/AudioParam.h
index e28fd386320c1b973247a695c3051115163930b6..42886883ba8d2176a8cc427963411447e8bb5b1b 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioParam.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioParam.h
@@ -64,7 +64,22 @@ enum AudioParamType {
ParamTypeGainGain,
ParamTypeOscillatorFrequency,
ParamTypeOscillatorDetune,
- ParamTypeStereoPannerPan
+ ParamTypeStereoPannerPan,
+ ParamTypePannerPositionX,
+ ParamTypePannerPositionY,
+ ParamTypePannerPositionZ,
+ ParamTypePannerOrientationX,
+ ParamTypePannerOrientationY,
+ ParamTypePannerOrientationZ,
+ ParamTypeAudioListenerPositionX,
+ ParamTypeAudioListenerPositionY,
+ ParamTypeAudioListenerPositionZ,
+ ParamTypeAudioListenerForwardX,
+ ParamTypeAudioListenerForwardY,
+ ParamTypeAudioListenerForwardZ,
+ ParamTypeAudioListenerUpX,
+ ParamTypeAudioListenerUpY,
+ ParamTypeAudioListenerUpZ,
};
// AudioParamHandler is an actual implementation of web-exposed AudioParam

Powered by Google App Engine
This is Rietveld 408576698