OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:platformmedia
(Results
1 - 25
of
27
) sorted by null
1
2
/external/webkit/Source/WebKit/qt/WebCoreSupport/
FullScreenVideoQt.cpp
60
if (m_videoElement->
platformMedia
().type != WebCore::
PlatformMedia
::GStreamerGWorldType)
63
GStreamerGWorld* gstreamerGWorld = m_videoElement->
platformMedia
().media.gstreamerGWorld;
81
if (m_videoElement->
platformMedia
().type == WebCore::
PlatformMedia
::GStreamerGWorldType)
82
m_videoElement->
platformMedia
().media.gstreamerGWorld->exitFullscreen();
171
PlatformMedia
platformMedia
= videoElement->
platformMedia
();
173
ASSERT(
platformMedia
.type == PlatformMedia::QtMediaPlayerType)
[
all
...]
DumpRenderTreeSupportQt.cpp
[
all
...]
/external/webkit/Source/WebKit/mac/WebView/
WebVideoFullscreenController.mm
107
if (_mediaElement && _mediaElement->
platformMedia
().type == WebCore::
PlatformMedia
::GStreamerGWorldType) {
108
WebCore::GStreamerGWorld* gstGworld = _mediaElement->
platformMedia
().media.gstreamerGWorld;
115
if (_mediaElement && _mediaElement->
platformMedia
().type == WebCore::
PlatformMedia
::QTMovieType)
116
[layer setMovie:_mediaElement->
platformMedia
().media.qtMovie];
192
if (_mediaElement && _mediaElement->
platformMedia
().type == WebCore::
PlatformMedia
::GStreamerGWorldType)
193
_mediaElement->
platformMedia
().media.gstreamerGWorld->exitFullscreen();
436
if (_mediaElement && _mediaElement->
platformMedia
().type == WebCore::PlatformMedia::QTMovieType
[
all
...]
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
FullscreenVideoController.cpp
258
if (m_mediaElement->
platformMedia
().type != WebCore::
PlatformMedia
::GStreamerGWorldType)
261
m_gstreamerGWorld = m_mediaElement->
platformMedia
().media.gstreamerGWorld;
340
GstElement* pipeline = m_mediaElement->
platformMedia
().media.gstreamerGWorld->pipeline();
354
if (m_mediaElement->
platformMedia
().type == WebCore::
PlatformMedia
::GStreamerGWorldType)
355
m_mediaElement->
platformMedia
().media.gstreamerGWorld->exitFullscreen();
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.h
74
virtual
PlatformMedia
platformMedia
() const;
MediaPlayerPrivateAVFoundation.h
121
virtual
PlatformMedia
platformMedia
() const = 0;
MediaPlayerPrivateAVFoundationObjC.mm
339
PlatformMedia
MediaPlayerPrivateAVFoundationObjC::
platformMedia
() const
341
LOG(Media, "MediaPlayerPrivateAVFoundationObjC::
platformMedia
(%p)", this);
342
PlatformMedia
pm;
343
pm.type =
PlatformMedia
::AVFoundationMediaPlayerType;
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.h
111
PlatformMedia
platformMedia
() const;
MediaPlayerPrivateGStreamer.cpp
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivateQt.h
112
virtual
PlatformMedia
platformMedia
() const;
MediaPlayerPrivateQt.cpp
661
PlatformMedia
MediaPlayerPrivateQt::
platformMedia
() const
663
PlatformMedia
pm;
664
pm.type =
PlatformMedia
::QtMediaPlayerType;
/external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.h
68
virtual
PlatformMedia
platformMedia
() const;
MediaPlayerPrivateQuickTimeWin.h
79
virtual
PlatformMedia
platformMedia
() const;
MediaPlayerPrivateQuickTimeWin.cpp
117
PlatformMedia
MediaPlayerPrivate::
platformMedia
() const
119
PlatformMedia
p;
120
p.type =
PlatformMedia
::QTMovieGWorldType;
MediaPlayerPrivateQuickTimeVisualContext.cpp
204
PlatformMedia
MediaPlayerPrivateQuickTimeVisualContext::
platformMedia
() const
206
PlatformMedia
p;
207
p.type =
PlatformMedia
::QTMovieVisualContextType;
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.h
67
struct
PlatformMedia
{
90
extern const
PlatformMedia
NoPlatformMedia;
181
PlatformMedia
platformMedia
() const;
MediaPlayer.cpp
78
const
PlatformMedia
NoPlatformMedia = {
PlatformMedia
::None, {0} };
93
virtual
PlatformMedia
platformMedia
() const { return NoPlatformMedia; }
496
PlatformMedia
MediaPlayer::
platformMedia
() const
498
return m_private->
platformMedia
();
MediaPlayerPrivate.h
49
virtual
PlatformMedia
platformMedia
() const { return NoPlatformMedia; }
/external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp
90
PlatformMedia
pm = element->constUnwrap<HTMLMediaElement>()->
platformMedia
();
241
PlatformMedia
WebMediaPlayerClientImpl::
platformMedia
() const
243
PlatformMedia
pm;
244
pm.type =
PlatformMedia
::ChromiumMediaPlayerType;
WebMediaPlayerClientImpl.h
88
virtual WebCore::
PlatformMedia
platformMedia
() const;
/external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h
81
PlatformMedia
platformMedia
() const;
MediaPlayerPrivateQTKit.mm
722
PlatformMedia
MediaPlayerPrivateQTKit::
platformMedia
() const
724
PlatformMedia
pm;
725
pm.type =
PlatformMedia
::QTMovieType;
[
all
...]
/external/webkit/Source/WebCore/html/
HTMLMediaElement.h
72
PlatformMedia
platformMedia
() const;
HTMLMediaElement.cpp
[
all
...]
/external/webkit/Source/WebCore/
ChangeLog-2010-05-24
[
all
...]
Completed in 773 milliseconds
1
2