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

Side by Side Diff: third_party/WebKit/Source/core/html/track/TextTrackList.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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 /* 1 /*
2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 14 matching lines...) Expand all
25 25
26 #ifndef TextTrackList_h 26 #ifndef TextTrackList_h
27 #define TextTrackList_h 27 #define TextTrackList_h
28 28
29 #include "core/events/EventListener.h" 29 #include "core/events/EventListener.h"
30 #include "core/events/EventTarget.h" 30 #include "core/events/EventTarget.h"
31 #include "core/html/HTMLMediaElement.h" 31 #include "core/html/HTMLMediaElement.h"
32 #include "platform/Timer.h" 32 #include "platform/Timer.h"
33 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
34 #include "wtf/PassRefPtr.h" 34 #include "wtf/PassRefPtr.h"
35 #include "wtf/RefCounted.h"
36 #include "wtf/Vector.h" 35 #include "wtf/Vector.h"
37 36
38 namespace blink { 37 namespace blink {
39 38
40 class GenericEventQueue; 39 class GenericEventQueue;
41 class TextTrack; 40 class TextTrack;
42 41
43 class CORE_EXPORT TextTrackList final : public EventTargetWithInlineData { 42 class CORE_EXPORT TextTrackList final : public EventTargetWithInlineData {
44 DEFINE_WRAPPERTYPEINFO(); 43 DEFINE_WRAPPERTYPEINFO();
45 public: 44 public:
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 Member<GenericEventQueue> m_asyncEventQueue; 93 Member<GenericEventQueue> m_asyncEventQueue;
95 94
96 HeapVector<Member<TextTrack>> m_addTrackTracks; 95 HeapVector<Member<TextTrack>> m_addTrackTracks;
97 HeapVector<Member<TextTrack>> m_elementTracks; 96 HeapVector<Member<TextTrack>> m_elementTracks;
98 HeapVector<Member<TextTrack>> m_inbandTracks; 97 HeapVector<Member<TextTrack>> m_inbandTracks;
99 }; 98 };
100 99
101 } // namespace blink 100 } // namespace blink
102 101
103 #endif // TextTrackList_h 102 #endif // TextTrackList_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/track/TextTrackCueList.h ('k') | third_party/WebKit/Source/core/html/track/TrackBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698