summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h')
-rw-r--r--chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h b/chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h
index 14ee7e4deab..8324d73d2e9 100644
--- a/chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h
+++ b/chromium/third_party/WebKit/Source/modules/webaudio/DelayNode.h
@@ -34,11 +34,11 @@ namespace WebCore {
class AudioParam;
class ExceptionState;
-class DelayNode : public AudioBasicProcessorNode {
+class DelayNode FINAL : public AudioBasicProcessorNode {
public:
- static PassRefPtr<DelayNode> create(AudioContext* context, float sampleRate, double maxDelayTime, ExceptionState& exceptionState)
+ static PassRefPtrWillBeRawPtr<DelayNode> create(AudioContext* context, float sampleRate, double maxDelayTime, ExceptionState& exceptionState)
{
- return adoptRef(new DelayNode(context, sampleRate, maxDelayTime, exceptionState));
+ return adoptRefWillBeNoop(new DelayNode(context, sampleRate, maxDelayTime, exceptionState));
}
AudioParam* delayTime();