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

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

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/AnalyserNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h b/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
index ef526825735f6966111a8681fe7628413c89ed02..8f1b2448284567ff577e928efb50e18f3e4500e9 100644
--- a/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AnalyserNode.h
@@ -31,7 +31,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class AnalyserHandler final : public AudioBasicInspectorHandler {
@@ -76,7 +76,7 @@ private:
class AnalyserNode final : public AudioBasicInspectorNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static AnalyserNode* create(AbstractAudioContext&, float sampleRate);
+ static AnalyserNode* create(BaseAudioContext&, float sampleRate);
unsigned fftSize() const;
void setFftSize(unsigned size, ExceptionState&);
@@ -93,7 +93,7 @@ public:
void getByteTimeDomainData(DOMUint8Array*);
private:
- AnalyserNode(AbstractAudioContext&, float sampleRate);
+ AnalyserNode(BaseAudioContext&, float sampleRate);
AnalyserHandler& analyserHandler() const;
};

Powered by Google App Engine
This is Rietveld 408576698