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

Side by Side Diff: Source/core/html/HTMLMediaElement.cpp

Issue 15422005: Remove unused includes from core/html .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 7 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/HTMLMarqueeElement.cpp ('k') | Source/core/html/HTMLMetaElement.cpp » ('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) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 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 15 matching lines...) Expand all
26 #include "config.h" 26 #include "config.h"
27 #include "core/html/HTMLMediaElement.h" 27 #include "core/html/HTMLMediaElement.h"
28 28
29 #include <wtf/CurrentTime.h> 29 #include <wtf/CurrentTime.h>
30 #include <wtf/MathExtras.h> 30 #include <wtf/MathExtras.h>
31 #include <wtf/MemoryInstrumentationVector.h> 31 #include <wtf/MemoryInstrumentationVector.h>
32 #include <wtf/NonCopyingSort.h> 32 #include <wtf/NonCopyingSort.h>
33 #include <wtf/text/CString.h> 33 #include <wtf/text/CString.h>
34 #include <wtf/Uint8Array.h> 34 #include <wtf/Uint8Array.h>
35 #include <limits> 35 #include <limits>
36 #include "CSSPropertyNames.h"
37 #include "CSSValueKeywords.h"
38 #include "HTMLNames.h" 36 #include "HTMLNames.h"
39 #include "bindings/v8/ScriptController.h" 37 #include "bindings/v8/ScriptController.h"
40 #include "bindings/v8/ScriptEventListener.h" 38 #include "bindings/v8/ScriptEventListener.h"
41 #include "core/css/MediaList.h" 39 #include "core/css/MediaList.h"
42 #include "core/css/MediaQueryEvaluator.h" 40 #include "core/css/MediaQueryEvaluator.h"
43 #include "core/dom/Attribute.h" 41 #include "core/dom/Attribute.h"
44 #include "core/dom/ClientRect.h"
45 #include "core/dom/ClientRectList.h"
46 #include "core/dom/Event.h" 42 #include "core/dom/Event.h"
47 #include "core/dom/EventNames.h" 43 #include "core/dom/EventNames.h"
48 #include "core/dom/ExceptionCode.h" 44 #include "core/dom/ExceptionCode.h"
49 #include "core/dom/ExceptionCodePlaceholder.h" 45 #include "core/dom/ExceptionCodePlaceholder.h"
50 #include "core/dom/MouseEvent.h"
51 #include "core/dom/NodeRenderingContext.h" 46 #include "core/dom/NodeRenderingContext.h"
52 #include "core/dom/WebCoreMemoryInstrumentation.h" 47 #include "core/dom/WebCoreMemoryInstrumentation.h"
53 #include "core/dom/shadow/ElementShadow.h"
54 #include "core/dom/shadow/ShadowRoot.h" 48 #include "core/dom/shadow/ShadowRoot.h"
55 #include "core/html/HTMLDocument.h"
56 #include "core/html/HTMLSourceElement.h" 49 #include "core/html/HTMLSourceElement.h"
57 #include "core/html/HTMLVideoElement.h"
58 #include "core/html/MediaController.h" 50 #include "core/html/MediaController.h"
59 #include "core/html/MediaDocument.h" 51 #include "core/html/MediaDocument.h"
60 #include "core/html/MediaError.h" 52 #include "core/html/MediaError.h"
61 #include "core/html/MediaFragmentURIParser.h" 53 #include "core/html/MediaFragmentURIParser.h"
62 #include "core/html/MediaKeyError.h" 54 #include "core/html/MediaKeyError.h"
63 #include "core/html/MediaKeyEvent.h" 55 #include "core/html/MediaKeyEvent.h"
64 #include "core/html/TimeRanges.h" 56 #include "core/html/TimeRanges.h"
65 #include "core/html/shadow/MediaControls.h" 57 #include "core/html/shadow/MediaControls.h"
66 #include "core/loader/DocumentLoader.h"
67 #include "core/loader/FrameLoader.h" 58 #include "core/loader/FrameLoader.h"
68 #include "core/loader/FrameLoaderClient.h"
69 #include "core/loader/appcache/ApplicationCacheHost.h"
70 #include "core/page/Chrome.h"
71 #include "core/page/ChromeClient.h"
72 #include "core/page/ContentSecurityPolicy.h" 59 #include "core/page/ContentSecurityPolicy.h"
73 #include "core/page/DiagnosticLoggingKeys.h"
74 #include "core/page/Frame.h" 60 #include "core/page/Frame.h"
75 #include "core/page/FrameView.h" 61 #include "core/page/FrameView.h"
76 #include "core/page/Page.h" 62 #include "core/page/Page.h"
77 #include "core/page/PageGroup.h" 63 #include "core/page/PageGroup.h"
78 #include "core/page/Settings.h" 64 #include "core/page/Settings.h"
79 #include "core/platform/ContentType.h" 65 #include "core/platform/ContentType.h"
80 #include "core/platform/Language.h"
81 #include "core/platform/Logging.h" 66 #include "core/platform/Logging.h"
82 #include "core/platform/MIMETypeFromURL.h" 67 #include "core/platform/MIMETypeFromURL.h"
83 #include "core/platform/MIMETypeRegistry.h"
84 #include "core/platform/NotImplemented.h" 68 #include "core/platform/NotImplemented.h"
85 #include "core/platform/graphics/MediaPlayer.h" 69 #include "core/platform/graphics/MediaPlayer.h"
86 #include "core/rendering/RenderLayerCompositor.h" 70 #include "core/rendering/RenderLayerCompositor.h"
87 #include "core/rendering/RenderVideo.h" 71 #include "core/rendering/RenderVideo.h"
88 #include "core/rendering/RenderView.h" 72 #include "core/rendering/RenderView.h"
89 #include "modules/mediasource/MediaSourceRegistry.h" 73 #include "modules/mediasource/MediaSourceRegistry.h"
90 #include "modules/mediasource/WebKitMediaSource.h" 74 #include "modules/mediasource/WebKitMediaSource.h"
91 #include "modules/mediastream/MediaStreamRegistry.h" 75 #include "modules/mediastream/MediaStreamRegistry.h"
92 #include "weborigin/SecurityOrigin.h" 76 #include "weborigin/SecurityOrigin.h"
93 #include "weborigin/SecurityPolicy.h" 77 #include "weborigin/SecurityPolicy.h"
(...skipping 3950 matching lines...) Expand 10 before | Expand all | Expand 10 after
4044 info.addMember(m_mediaGroup, "mediaGroup"); 4028 info.addMember(m_mediaGroup, "mediaGroup");
4045 info.addMember(m_mediaController, "mediaController"); 4029 info.addMember(m_mediaController, "mediaController");
4046 4030
4047 #if ENABLE(WEB_AUDIO) 4031 #if ENABLE(WEB_AUDIO)
4048 info.addMember(m_audioSourceNode, "audioSourceNode"); 4032 info.addMember(m_audioSourceNode, "audioSourceNode");
4049 #endif 4033 #endif
4050 4034
4051 } 4035 }
4052 4036
4053 } 4037 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLMarqueeElement.cpp ('k') | Source/core/html/HTMLMetaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698