1 /*
2  * Copyright (C) 2011, Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1.  Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2.  Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
20  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
23  * DAMAGE.
24  */
25 
26 #include "third_party/blink/renderer/modules/webaudio/offline_audio_completion_event.h"
27 
28 #include "third_party/blink/renderer/core/event_type_names.h"
29 
30 namespace blink {
31 
Create()32 OfflineAudioCompletionEvent* OfflineAudioCompletionEvent::Create() {
33   return MakeGarbageCollected<OfflineAudioCompletionEvent>();
34 }
35 
Create(AudioBuffer * rendered_buffer)36 OfflineAudioCompletionEvent* OfflineAudioCompletionEvent::Create(
37     AudioBuffer* rendered_buffer) {
38   return MakeGarbageCollected<OfflineAudioCompletionEvent>(rendered_buffer);
39 }
40 
Create(const AtomicString & event_type,const OfflineAudioCompletionEventInit * event_init)41 OfflineAudioCompletionEvent* OfflineAudioCompletionEvent::Create(
42     const AtomicString& event_type,
43     const OfflineAudioCompletionEventInit* event_init) {
44   return MakeGarbageCollected<OfflineAudioCompletionEvent>(event_type,
45                                                            event_init);
46 }
47 
48 OfflineAudioCompletionEvent::OfflineAudioCompletionEvent() = default;
49 
OfflineAudioCompletionEvent(AudioBuffer * rendered_buffer)50 OfflineAudioCompletionEvent::OfflineAudioCompletionEvent(
51     AudioBuffer* rendered_buffer)
52     : Event(event_type_names::kComplete, Bubbles::kYes, Cancelable::kNo),
53       rendered_buffer_(rendered_buffer) {}
54 
OfflineAudioCompletionEvent(const AtomicString & event_type,const OfflineAudioCompletionEventInit * event_init)55 OfflineAudioCompletionEvent::OfflineAudioCompletionEvent(
56     const AtomicString& event_type,
57     const OfflineAudioCompletionEventInit* event_init)
58     : Event(event_type, event_init) {
59   rendered_buffer_ = event_init->renderedBuffer();
60 }
61 
62 OfflineAudioCompletionEvent::~OfflineAudioCompletionEvent() = default;
63 
InterfaceName() const64 const AtomicString& OfflineAudioCompletionEvent::InterfaceName() const {
65   return event_interface_names::kOfflineAudioCompletionEvent;
66 }
67 
Trace(Visitor * visitor)68 void OfflineAudioCompletionEvent::Trace(Visitor* visitor) {
69   visitor->Trace(rendered_buffer_);
70   Event::Trace(visitor);
71 }
72 
73 }  // namespace blink
74