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

Side by Side Diff: content/renderer/media/webmediaplayer_ms.h

Issue 2756553002: Force the video to go fullscreen when setting persistent video (Closed)
Patch Set: addressed nits Created 3 years, 9 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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_
6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 size_t videoDecodedByteCount() const override; 144 size_t videoDecodedByteCount() const override;
145 145
146 // WebMediaPlayerDelegate::Observer implementation. 146 // WebMediaPlayerDelegate::Observer implementation.
147 void OnFrameHidden() override; 147 void OnFrameHidden() override;
148 void OnFrameClosed() override; 148 void OnFrameClosed() override;
149 void OnFrameShown() override; 149 void OnFrameShown() override;
150 void OnIdleTimeout() override; 150 void OnIdleTimeout() override;
151 void OnPlay() override; 151 void OnPlay() override;
152 void OnPause() override; 152 void OnPause() override;
153 void OnVolumeMultiplierUpdate(double multiplier) override; 153 void OnVolumeMultiplierUpdate(double multiplier) override;
154 void OnBecamePersistentVideo(bool value) override;
154 155
155 bool copyVideoTextureToPlatformTexture(gpu::gles2::GLES2Interface* gl, 156 bool copyVideoTextureToPlatformTexture(gpu::gles2::GLES2Interface* gl,
156 unsigned int texture, 157 unsigned int texture,
157 bool premultiply_alpha, 158 bool premultiply_alpha,
158 bool flip_y) override; 159 bool flip_y) override;
159 160
160 bool texImageImpl(TexImageFunctionID functionID, 161 bool texImageImpl(TexImageFunctionID functionID,
161 unsigned target, 162 unsigned target,
162 gpu::gles2::GLES2Interface* gl, 163 gpu::gles2::GLES2Interface* gl,
163 int level, 164 int level,
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 // True if playback should be started upon the next call to OnShown(). Only 258 // True if playback should be started upon the next call to OnShown(). Only
258 // used on Android. 259 // used on Android.
259 bool should_play_upon_shown_; 260 bool should_play_upon_shown_;
260 261
261 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS); 262 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS);
262 }; 263 };
263 264
264 } // namespace content 265 } // namespace content
265 266
266 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ 267 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_
OLDNEW
« no previous file with comments | « content/renderer/media/renderer_webmediaplayer_delegate_browsertest.cc ('k') | content/renderer/media/webmediaplayer_ms.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698