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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OscillatorNode.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/OscillatorNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
index f515946ee64c4d07b47a64ef6916365f16c6e0d1..9714472f2f157789c7d262741185f316cade4616 100644
--- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
@@ -34,7 +34,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class PeriodicWave;
@@ -99,7 +99,7 @@ private:
class OscillatorNode final : public AudioScheduledSourceNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static OscillatorNode* create(AbstractAudioContext&, ExceptionState&);
+ static OscillatorNode* create(BaseAudioContext&, ExceptionState&);
DECLARE_VIRTUAL_TRACE();
String type() const;
@@ -109,7 +109,7 @@ public:
void setPeriodicWave(PeriodicWave*);
private:
- OscillatorNode(AbstractAudioContext&);
+ OscillatorNode(BaseAudioContext&);
OscillatorHandler& oscillatorHandler() const;
Member<AudioParam> m_frequency;

Powered by Google App Engine
This is Rietveld 408576698