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

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

Issue 2707243006: [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: remove unused checks Created 3 years, 8 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/IIRFilterNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
index 973eb42530379cd3367881c35b88804eda904922..8ba47caf1ab235249e82d8dba8393cddbcf7c13b 100644
--- a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
@@ -6,6 +6,7 @@
#define IIRFilterNode_h
#include "core/dom/DOMTypedArray.h"
+#include "core/dom/NotShared.h"
#include "modules/webaudio/AudioNode.h"
#include "modules/webaudio/IIRProcessor.h"
@@ -32,9 +33,9 @@ class IIRFilterNode : public AudioNode {
// Get the magnitude and phase response of the filter at the given
// set of frequencies (in Hz). The phase response is in radians.
- void getFrequencyResponse(const DOMFloat32Array* frequencyHz,
- DOMFloat32Array* magResponse,
- DOMFloat32Array* phaseResponse,
+ void getFrequencyResponse(const NotShared<const DOMFloat32Array>& frequencyHz,
+ const NotShared<DOMFloat32Array>& magResponse,
+ const NotShared<DOMFloat32Array>& phaseResponse,
ExceptionState&);
private:

Powered by Google App Engine
This is Rietveld 408576698