OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights |
3 * reserved. | 3 * 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 #include "core/html/track/VideoTrack.h" | 65 #include "core/html/track/VideoTrack.h" |
66 #include "core/html/track/VideoTrackList.h" | 66 #include "core/html/track/VideoTrackList.h" |
67 #include "core/inspector/ConsoleMessage.h" | 67 #include "core/inspector/ConsoleMessage.h" |
68 #include "core/layout/LayoutMedia.h" | 68 #include "core/layout/LayoutMedia.h" |
69 #include "core/layout/api/LayoutViewItem.h" | 69 #include "core/layout/api/LayoutViewItem.h" |
70 #include "core/layout/compositing/PaintLayerCompositor.h" | 70 #include "core/layout/compositing/PaintLayerCompositor.h" |
71 #include "core/loader/FrameLoader.h" | 71 #include "core/loader/FrameLoader.h" |
72 #include "core/loader/FrameLoaderClient.h" | 72 #include "core/loader/FrameLoaderClient.h" |
73 #include "core/page/ChromeClient.h" | 73 #include "core/page/ChromeClient.h" |
74 #include "core/page/NetworkStateNotifier.h" | 74 #include "core/page/NetworkStateNotifier.h" |
75 #include "platform/ContentType.h" | |
76 #include "platform/Histogram.h" | 75 #include "platform/Histogram.h" |
77 #include "platform/LayoutTestSupport.h" | 76 #include "platform/LayoutTestSupport.h" |
78 #include "platform/MIMETypeFromURL.h" | |
79 #include "platform/RuntimeEnabledFeatures.h" | 77 #include "platform/RuntimeEnabledFeatures.h" |
80 #include "platform/UserGestureIndicator.h" | 78 #include "platform/UserGestureIndicator.h" |
81 #include "platform/audio/AudioBus.h" | 79 #include "platform/audio/AudioBus.h" |
82 #include "platform/audio/AudioSourceProviderClient.h" | 80 #include "platform/audio/AudioSourceProviderClient.h" |
83 #include "platform/graphics/GraphicsLayer.h" | 81 #include "platform/graphics/GraphicsLayer.h" |
84 #include "platform/mediastream/MediaStreamDescriptor.h" | 82 #include "platform/mediastream/MediaStreamDescriptor.h" |
| 83 #include "platform/network/mime/ContentType.h" |
| 84 #include "platform/network/mime/MIMETypeFromURL.h" |
85 #include "platform/weborigin/SecurityOrigin.h" | 85 #include "platform/weborigin/SecurityOrigin.h" |
86 #include "public/platform/Platform.h" | 86 #include "public/platform/Platform.h" |
87 #include "public/platform/WebAudioSourceProvider.h" | 87 #include "public/platform/WebAudioSourceProvider.h" |
88 #include "public/platform/WebContentDecryptionModule.h" | 88 #include "public/platform/WebContentDecryptionModule.h" |
89 #include "public/platform/WebInbandTextTrack.h" | 89 #include "public/platform/WebInbandTextTrack.h" |
90 #include "public/platform/WebMediaPlayerSource.h" | 90 #include "public/platform/WebMediaPlayerSource.h" |
91 #include "public/platform/WebMediaStream.h" | 91 #include "public/platform/WebMediaStream.h" |
92 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h
" | 92 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h
" |
93 #include "public/platform/modules/remoteplayback/WebRemotePlaybackClient.h" | 93 #include "public/platform/modules/remoteplayback/WebRemotePlaybackClient.h" |
94 #include "public/platform/modules/remoteplayback/WebRemotePlaybackState.h" | 94 #include "public/platform/modules/remoteplayback/WebRemotePlaybackState.h" |
(...skipping 3932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4027 | 4027 |
4028 DEFINE_TRACE(HTMLMediaElement::AudioClientImpl) { | 4028 DEFINE_TRACE(HTMLMediaElement::AudioClientImpl) { |
4029 visitor->trace(m_client); | 4029 visitor->trace(m_client); |
4030 } | 4030 } |
4031 | 4031 |
4032 DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl) { | 4032 DEFINE_TRACE(HTMLMediaElement::AudioSourceProviderImpl) { |
4033 visitor->trace(m_client); | 4033 visitor->trace(m_client); |
4034 } | 4034 } |
4035 | 4035 |
4036 } // namespace blink | 4036 } // namespace blink |
OLD | NEW |