| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 AudioTrack_h | 5 #ifndef AudioTrack_h |
| 6 #define AudioTrack_h | 6 #define AudioTrack_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "core/html/track/TrackBase.h" | 10 #include "core/html/track/TrackBase.h" |
| 11 #include "platform/Supplementable.h" |
| 11 | 12 |
| 12 namespace blink { | 13 namespace blink { |
| 13 | 14 |
| 14 class CORE_EXPORT AudioTrack final : public GarbageCollectedFinalized<AudioTrack
>, public TrackBase, public ScriptWrappable { | 15 class CORE_EXPORT AudioTrack final : public GarbageCollectedFinalized<AudioTrack
>, public TrackBase, public ScriptWrappable, public HeapSupplementable<AudioTrac
k> { |
| 15 DEFINE_WRAPPERTYPEINFO(); | 16 DEFINE_WRAPPERTYPEINFO(); |
| 16 USING_GARBAGE_COLLECTED_MIXIN(AudioTrack); | 17 USING_GARBAGE_COLLECTED_MIXIN(AudioTrack); |
| 17 public: | 18 public: |
| 18 static AudioTrack* create(const String& id, const AtomicString& kind, const
AtomicString& label, const AtomicString& language, bool enabled) | 19 static AudioTrack* create(const String& id, const AtomicString& kind, const
AtomicString& label, const AtomicString& language, bool enabled) |
| 19 { | 20 { |
| 20 return new AudioTrack(id, kind, label, language, enabled); | 21 return new AudioTrack(id, kind, label, language, enabled); |
| 21 } | 22 } |
| 22 | 23 |
| 23 ~AudioTrack() override; | 24 ~AudioTrack() override; |
| 24 DECLARE_VIRTUAL_TRACE(); | 25 DECLARE_VIRTUAL_TRACE(); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 44 AtomicString defaultKind() const override; | 45 AtomicString defaultKind() const override; |
| 45 | 46 |
| 46 bool m_enabled; | 47 bool m_enabled; |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 DEFINE_TRACK_TYPE_CASTS(AudioTrack, TrackBase::AudioTrack); | 50 DEFINE_TRACK_TYPE_CASTS(AudioTrack, TrackBase::AudioTrack); |
| 50 | 51 |
| 51 } // namespace blink | 52 } // namespace blink |
| 52 | 53 |
| 53 #endif // AudioTrack_h | 54 #endif // AudioTrack_h |
| OLD | NEW |