OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 UnderlyingSourceBase_h | 5 #ifndef UnderlyingSourceBase_h |
6 #define UnderlyingSourceBase_h | 6 #define UnderlyingSourceBase_h |
7 | 7 |
8 #include "bindings/core/v8/ActiveScriptWrappable.h" | 8 #include "bindings/core/v8/ActiveScriptWrappable.h" |
9 #include "bindings/core/v8/ScriptPromise.h" | 9 #include "bindings/core/v8/ScriptPromise.h" |
10 #include "bindings/core/v8/ScriptState.h" | 10 #include "bindings/core/v8/ScriptState.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 virtual ScriptPromise pull(ScriptState*); | 33 virtual ScriptPromise pull(ScriptState*); |
34 | 34 |
35 ScriptPromise cancelWrapper(ScriptState*, ScriptValue reason); | 35 ScriptPromise cancelWrapper(ScriptState*, ScriptValue reason); |
36 virtual ScriptPromise cancel(ScriptState*, ScriptValue reason); | 36 virtual ScriptPromise cancel(ScriptState*, ScriptValue reason); |
37 | 37 |
38 void notifyLockAcquired(); | 38 void notifyLockAcquired(); |
39 void notifyLockReleased(); | 39 void notifyLockReleased(); |
40 | 40 |
41 // ActiveScriptWrappable | 41 // ActiveScriptWrappable |
42 bool hasPendingActivity() const final; | 42 bool hasPendingActivity() const; |
43 | 43 |
44 // ActiveDOMObject | 44 // ActiveDOMObject |
45 void stop() override; | 45 void stop() override; |
46 | 46 |
47 protected: | 47 protected: |
48 explicit UnderlyingSourceBase(ScriptState* scriptState) | 48 explicit UnderlyingSourceBase(ScriptState* scriptState) |
49 : ActiveScriptWrappable(this) | 49 : ActiveScriptWrappable(this) |
50 , ActiveDOMObject(scriptState->getExecutionContext()) | 50 , ActiveDOMObject(scriptState->getExecutionContext()) |
51 { | 51 { |
52 this->suspendIfNeeded(); | 52 this->suspendIfNeeded(); |
53 } | 53 } |
54 | 54 |
55 ReadableStreamController* controller() const { return m_controller; } | 55 ReadableStreamController* controller() const { return m_controller; } |
56 | 56 |
57 private: | 57 private: |
58 Member<ReadableStreamController> m_controller; | 58 Member<ReadableStreamController> m_controller; |
59 bool m_isStreamLocked = false; | 59 bool m_isStreamLocked = false; |
60 }; | 60 }; |
61 | 61 |
62 } // namespace blink | 62 } // namespace blink |
63 | 63 |
64 #endif // UnderlyingSourceBase_h | 64 #endif // UnderlyingSourceBase_h |
OLD | NEW |