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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioContext.h

Issue 2345693002: Move close() from BaseAudioContext to AudioContext (Closed)
Patch Set: Update expected results Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef AudioContext_h 5 #ifndef AudioContext_h
6 #define AudioContext_h 6 #define AudioContext_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "bindings/core/v8/ScriptPromiseResolver.h" 9 #include "bindings/core/v8/ScriptPromiseResolver.h"
10 #include "modules/webaudio/BaseAudioContext.h" 10 #include "modules/webaudio/BaseAudioContext.h"
11 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class Document; 15 class Document;
16 class ExceptionState; 16 class ExceptionState;
17 class ScriptState; 17 class ScriptState;
18 18
19 // This is an BaseAudioContext which actually plays sound, unlike an 19 // This is an BaseAudioContext which actually plays sound, unlike an
20 // OfflineAudioContext which renders sound into a buffer. 20 // OfflineAudioContext which renders sound into a buffer.
21 class AudioContext : public BaseAudioContext { 21 class AudioContext : public BaseAudioContext {
22 DEFINE_WRAPPERTYPEINFO(); 22 DEFINE_WRAPPERTYPEINFO();
23 public: 23 public:
24 static AudioContext* create(Document&, ExceptionState&); 24 static AudioContext* create(Document&, ExceptionState&);
25 25
26 ~AudioContext() override; 26 ~AudioContext() override;
27 DECLARE_VIRTUAL_TRACE(); 27 DECLARE_VIRTUAL_TRACE();
28 28
29 ScriptPromise closeContext(ScriptState*) final; 29 ScriptPromise closeContext(ScriptState*);
30 bool isContextClosed() const final; 30 bool isContextClosed() const final;
31 31
32 ScriptPromise suspendContext(ScriptState*) final; 32 ScriptPromise suspendContext(ScriptState*) final;
33 ScriptPromise resumeContext(ScriptState*) final; 33 ScriptPromise resumeContext(ScriptState*) final;
34 34
35 bool hasRealtimeConstraint() final { return true; } 35 bool hasRealtimeConstraint() final { return true; }
36 36
37 protected: 37 protected:
38 AudioContext(Document&); 38 AudioContext(Document&);
39 39
40 void didClose() final; 40 void didClose() final;
41 41
42 private: 42 private:
43 void stopRendering(); 43 void stopRendering();
44 44
45 unsigned m_contextId; 45 unsigned m_contextId;
46 Member<ScriptPromiseResolver> m_closeResolver; 46 Member<ScriptPromiseResolver> m_closeResolver;
47 }; 47 };
48 48
49 } // namespace blink 49 } // namespace blink
50 50
51 #endif // AudioContext_h 51 #endif // AudioContext_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698