summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-13 15:05:36 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-14 10:33:47 +0000
commite684a3455bcc29a6e3e66a004e352dea4e1141e7 (patch)
treed55b4003bde34d7d05f558f02cfd82b2a66a7aac /chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h
parent2b94bfe47ccb6c08047959d1c26e392919550e86 (diff)
downloadqtwebengine-chromium-e684a3455bcc29a6e3e66a004e352dea4e1141e7.tar.gz
BASELINE: Update Chromium to 72.0.3626.110 and Ninja to 1.9.0
Change-Id: Ic57220b00ecc929a893c91f5cc552f5d3e99e922 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h b/chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h
index 71fcae06954..608bd4de29a 100644
--- a/chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h
+++ b/chromium/third_party/blink/renderer/modules/webaudio/audio_listener.h
@@ -87,17 +87,17 @@ class AudioListener : public ScriptWrappable {
return FloatPoint3D(up_x_->value(), up_y_->value(), up_z_->value());
}
- const float* GetPositionXValues(size_t frames_to_process);
- const float* GetPositionYValues(size_t frames_to_process);
- const float* GetPositionZValues(size_t frames_to_process);
+ const float* GetPositionXValues(uint32_t frames_to_process);
+ const float* GetPositionYValues(uint32_t frames_to_process);
+ const float* GetPositionZValues(uint32_t frames_to_process);
- const float* GetForwardXValues(size_t frames_to_process);
- const float* GetForwardYValues(size_t frames_to_process);
- const float* GetForwardZValues(size_t frames_to_process);
+ const float* GetForwardXValues(uint32_t frames_to_process);
+ const float* GetForwardYValues(uint32_t frames_to_process);
+ const float* GetForwardZValues(uint32_t frames_to_process);
- const float* GetUpXValues(size_t frames_to_process);
- const float* GetUpYValues(size_t frames_to_process);
- const float* GetUpZValues(size_t frames_to_process);
+ const float* GetUpXValues(uint32_t frames_to_process);
+ const float* GetUpYValues(uint32_t frames_to_process);
+ const float* GetUpZValues(uint32_t frames_to_process);
// Position
void setPosition(float x, float y, float z, ExceptionState& exceptionState) {
@@ -167,7 +167,7 @@ class AudioListener : public ScriptWrappable {
// the audio thread.
bool is_listener_dirty_;
- void UpdateValuesIfNeeded(size_t frames_to_process);
+ void UpdateValuesIfNeeded(uint32_t frames_to_process);
AudioFloatArray position_x_values_;
AudioFloatArray position_y_values_;