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

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

Issue 304353005: Eliminate MediaPlayer & MediaPlayerClient abstractions(rate, setRate and other APIs) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 virtual bool supportsSave() const = 0; 118 virtual bool supportsSave() const = 0;
119 119
120 virtual double duration() const = 0; 120 virtual double duration() const = 0;
121 121
122 virtual double currentTime() const = 0; 122 virtual double currentTime() const = 0;
123 123
124 virtual void seek(double) = 0; 124 virtual void seek(double) = 0;
125 125
126 virtual bool seeking() const = 0; 126 virtual bool seeking() const = 0;
127 127
128 virtual double rate() const = 0;
129 virtual void setRate(double) = 0;
130
131 virtual bool paused() const = 0; 128 virtual bool paused() const = 0;
132 129
133 virtual void setPoster(const KURL&) = 0; 130 virtual void setPoster(const KURL&) = 0;
134 131
135 enum NetworkState { Empty, Idle, Loading, Loaded, FormatError, NetworkError, DecodeError }; 132 enum NetworkState { Empty, Idle, Loading, Loaded, FormatError, NetworkError, DecodeError };
136 virtual NetworkState networkState() const = 0; 133 virtual NetworkState networkState() const = 0;
137 134
138 enum ReadyState { HaveNothing, HaveMetadata, HaveCurrentData, HaveFutureDat a, HaveEnoughData }; 135 enum ReadyState { HaveNothing, HaveMetadata, HaveCurrentData, HaveFutureDat a, HaveEnoughData };
139 virtual ReadyState readyState() const = 0; 136 virtual ReadyState readyState() const = 0;
140 137
141 virtual double maxTimeSeekable() const = 0;
142 virtual PassRefPtr<TimeRanges> buffered() const = 0;
143
144 virtual bool didLoadingProgress() const = 0;
145
146 virtual void paint(GraphicsContext*, const IntRect&) = 0; 138 virtual void paint(GraphicsContext*, const IntRect&) = 0;
147 virtual bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0; 139 virtual bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0;
148 140
149 enum Preload { None, MetaData, Auto }; 141 enum Preload { None, MetaData, Auto };
150 virtual void setPreload(Preload) = 0; 142 virtual void setPreload(Preload) = 0;
151 143
152 virtual bool hasSingleSecurityOrigin() const = 0; 144 virtual bool hasSingleSecurityOrigin() const = 0;
153 145
154 // Time value in the movie's time scale. It is only necessary to override th is if the media 146 // Time value in the movie's time scale. It is only necessary to override th is if the media
155 // engine uses rational numbers to represent media time. 147 // engine uses rational numbers to represent media time.
156 virtual double mediaTimeForTimeValue(double timeValue) const = 0; 148 virtual double mediaTimeForTimeValue(double timeValue) const = 0;
157 149
158 #if ENABLE(WEB_AUDIO) 150 #if ENABLE(WEB_AUDIO)
159 virtual AudioSourceProvider* audioSourceProvider() = 0; 151 virtual AudioSourceProvider* audioSourceProvider() = 0;
160 #endif 152 #endif
161 virtual blink::WebMediaPlayer* webMediaPlayer() const = 0; 153 virtual blink::WebMediaPlayer* webMediaPlayer() const = 0;
162 }; 154 };
163 155
164 } 156 }
165 157
166 #endif // MediaPlayer_h 158 #endif // MediaPlayer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698