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

Side by Side Diff: Source/platform/graphics/media/MediaPlayer.h

Issue 370203004: Eliminate MediaPlayer abstraction(play/pause, other APIs) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: updated as per the comment Created 6 years, 5 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/HTMLMediaElement.cpp ('k') | Source/web/WebMediaPlayerClientImpl.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) 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*); 105 static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*);
106 static void setMediaEngineCreateFunction(CreateMediaEnginePlayer); 106 static void setMediaEngineCreateFunction(CreateMediaEnginePlayer);
107 107
108 static double invalidTime() { return -1.0; } 108 static double invalidTime() { return -1.0; }
109 109
110 MediaPlayer() { } 110 MediaPlayer() { }
111 virtual ~MediaPlayer() { } 111 virtual ~MediaPlayer() { }
112 112
113 virtual void load(blink::WebMediaPlayer::LoadType, const String& url, blink: :WebMediaPlayer::CORSMode) = 0; 113 virtual void load(blink::WebMediaPlayer::LoadType, const String& url, blink: :WebMediaPlayer::CORSMode) = 0;
114 114
115 virtual void play() = 0;
116 virtual void pause() = 0;
117
118 virtual bool supportsSave() const = 0;
119
120 virtual double duration() const = 0; 115 virtual double duration() const = 0;
121 116
122 virtual double currentTime() const = 0; 117 virtual double currentTime() const = 0;
123 118
124 virtual void seek(double) = 0; 119 virtual void seek(double) = 0;
125 120
126 virtual bool seeking() const = 0; 121 virtual bool seeking() const = 0;
127 122
128 virtual bool paused() const = 0;
129
130 virtual void setPoster(const KURL&) = 0; 123 virtual void setPoster(const KURL&) = 0;
131 124
132 enum NetworkState { Empty, Idle, Loading, Loaded, FormatError, NetworkError, DecodeError }; 125 enum NetworkState { Empty, Idle, Loading, Loaded, FormatError, NetworkError, DecodeError };
133 virtual NetworkState networkState() const = 0; 126 virtual NetworkState networkState() const = 0;
134 127
135 virtual void paint(GraphicsContext*, const IntRect&) = 0; 128 virtual void paint(GraphicsContext*, const IntRect&) = 0;
136 virtual bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0; 129 virtual bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0;
137 130
138 enum Preload { None, MetaData, Auto }; 131 enum Preload { None, MetaData, Auto };
139 virtual void setPreload(Preload) = 0; 132 virtual void setPreload(Preload) = 0;
140 133
141 virtual bool hasSingleSecurityOrigin() const = 0;
142
143 // Time value in the movie's time scale. It is only necessary to override th is if the media
144 // engine uses rational numbers to represent media time.
145 virtual double mediaTimeForTimeValue(double timeValue) const = 0;
146
147 #if ENABLE(WEB_AUDIO) 134 #if ENABLE(WEB_AUDIO)
148 virtual AudioSourceProvider* audioSourceProvider() = 0; 135 virtual AudioSourceProvider* audioSourceProvider() = 0;
149 #endif 136 #endif
150 virtual blink::WebMediaPlayer* webMediaPlayer() const = 0; 137 virtual blink::WebMediaPlayer* webMediaPlayer() const = 0;
151 }; 138 };
152 139
153 } 140 }
154 141
155 #endif // MediaPlayer_h 142 #endif // MediaPlayer_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/web/WebMediaPlayerClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698