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

Side by Side Diff: Source/core/html/track/TextTrack.h

Issue 17388003: Remove unused includes from core/{editing,fileapi,history,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 6 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
« no previous file with comments | « Source/core/html/track/LoadableTextTrack.cpp ('k') | Source/core/html/track/TextTrackCue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef TextTrack_h 27 #ifndef TextTrack_h
28 #define TextTrack_h 28 #define TextTrack_h
29 29
30 #include "bindings/v8/ScriptWrappable.h" 30 #include "bindings/v8/ScriptWrappable.h"
31 #include "core/dom/ExceptionCode.h" 31 #include "core/dom/ExceptionCode.h"
32 #include "core/html/track/TrackBase.h" 32 #include "core/html/track/TrackBase.h"
33 #include <wtf/PassOwnPtr.h> 33 #include "wtf/text/WTFString.h"
34 #include <wtf/RefCounted.h>
35 #include <wtf/text/WTFString.h>
36 34
37 namespace WebCore { 35 namespace WebCore {
38 36
39 class HTMLMediaElement; 37 class HTMLMediaElement;
40 class TextTrack; 38 class TextTrack;
41 class TextTrackCue; 39 class TextTrackCue;
42 class TextTrackCueList; 40 class TextTrackCueList;
43 #if ENABLE(WEBVTT_REGIONS) 41 #if ENABLE(WEBVTT_REGIONS)
44 class TextTrackRegion; 42 class TextTrackRegion;
45 class TextTrackRegionList; 43 class TextTrackRegionList;
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 TextTrackType m_trackType; 162 TextTrackType m_trackType;
165 ReadinessState m_readinessState; 163 ReadinessState m_readinessState;
166 int m_trackIndex; 164 int m_trackIndex;
167 int m_renderedTrackIndex; 165 int m_renderedTrackIndex;
168 bool m_hasBeenConfigured; 166 bool m_hasBeenConfigured;
169 }; 167 };
170 168
171 } // namespace WebCore 169 } // namespace WebCore
172 170
173 #endif 171 #endif
OLDNEW
« no previous file with comments | « Source/core/html/track/LoadableTextTrack.cpp ('k') | Source/core/html/track/TextTrackCue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698