| OLD | NEW |
| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 double mediaTimeForTimeValue(double timeValue) const override; | 139 double mediaTimeForTimeValue(double timeValue) const override; |
| 140 | 140 |
| 141 unsigned decodedFrameCount() const override; | 141 unsigned decodedFrameCount() const override; |
| 142 unsigned droppedFrameCount() const override; | 142 unsigned droppedFrameCount() const override; |
| 143 size_t audioDecodedByteCount() const override; | 143 size_t audioDecodedByteCount() const override; |
| 144 size_t videoDecodedByteCount() const override; | 144 size_t videoDecodedByteCount() const override; |
| 145 | 145 |
| 146 // WebMediaPlayerDelegate::Observer implementation. | 146 // WebMediaPlayerDelegate::Observer implementation. |
| 147 void OnHidden() override; | 147 void OnHidden() override; |
| 148 void OnShown() override; | 148 void OnShown() override; |
| 149 void OnSuspendRequested(bool must_suspend) override; | 149 bool OnSuspendRequested(bool must_suspend) override; |
| 150 void OnPlay() override; | 150 void OnPlay() override; |
| 151 void OnPause() override; | 151 void OnPause() override; |
| 152 void OnVolumeMultiplierUpdate(double multiplier) override; | 152 void OnVolumeMultiplierUpdate(double multiplier) override; |
| 153 | 153 |
| 154 bool copyVideoTextureToPlatformTexture(gpu::gles2::GLES2Interface* gl, | 154 bool copyVideoTextureToPlatformTexture(gpu::gles2::GLES2Interface* gl, |
| 155 unsigned int texture, | 155 unsigned int texture, |
| 156 unsigned int internal_format, | 156 unsigned int internal_format, |
| 157 unsigned int type, | 157 unsigned int type, |
| 158 bool premultiply_alpha, | 158 bool premultiply_alpha, |
| 159 bool flip_y) override; | 159 bool flip_y) override; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 // True if playback should be started upon the next call to OnShown(). Only | 237 // True if playback should be started upon the next call to OnShown(). Only |
| 238 // used on Android. | 238 // used on Android. |
| 239 bool should_play_upon_shown_; | 239 bool should_play_upon_shown_; |
| 240 | 240 |
| 241 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS); | 241 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS); |
| 242 }; | 242 }; |
| 243 | 243 |
| 244 } // namespace content | 244 } // namespace content |
| 245 | 245 |
| 246 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ | 246 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ |
| OLD | NEW |