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

Unified Diff: third_party/WebKit/Source/modules/webaudio/ConvolverNode.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/ConvolverNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h b/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
index d27be4e83af27522b3823807085bcccfc2db8d95..bf73e609a92119067194511263bc7c98a6c0c26c 100644
--- a/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
@@ -75,7 +75,7 @@ private:
class MODULES_EXPORT ConvolverNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static ConvolverNode* create(AbstractAudioContext&, ExceptionState&);
+ static ConvolverNode* create(BaseAudioContext&, ExceptionState&);
AudioBuffer* buffer() const;
void setBuffer(AudioBuffer*, ExceptionState&);
@@ -83,7 +83,7 @@ public:
void setNormalize(bool);
private:
- ConvolverNode(AbstractAudioContext&);
+ ConvolverNode(BaseAudioContext&);
ConvolverHandler& convolverHandler() const;
FRIEND_TEST_ALL_PREFIXES(ConvolverNodeTest, ReverbLifetime);

Powered by Google App Engine
This is Rietveld 408576698