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

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

Issue 2103043007: Rename AbstractAudioContext to BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use ASSERT(isGraphOwner()) instead of DCHECK Created 4 years, 5 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 dd373b185e4a7cde279f49746a5548e6738d1b86..5999f7aa35de5177e041b51be8ba2b8c12ca346b 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&, ExceptionState&);
+ static AnalyserNode* create(BaseAudioContext&, ExceptionState&);
unsigned fftSize() const;
void setFftSize(unsigned size, ExceptionState&);
@@ -93,7 +93,7 @@ public:
void getByteTimeDomainData(DOMUint8Array*);
private:
- AnalyserNode(AbstractAudioContext&);
+ AnalyserNode(BaseAudioContext&);
AnalyserHandler& analyserHandler() const;
};

Powered by Google App Engine
This is Rietveld 408576698