| Index: third_party/WebKit/public/platform/WebMediaPlayer.h
|
| diff --git a/third_party/WebKit/public/platform/WebMediaPlayer.h b/third_party/WebKit/public/platform/WebMediaPlayer.h
|
| index 85a95762e065fcfe7aef3f770e9f3ecac0f99d5b..9b66ab58e56647d705c5bc507c44e575d92cd29d 100644
|
| --- a/third_party/WebKit/public/platform/WebMediaPlayer.h
|
| +++ b/third_party/WebKit/public/platform/WebMediaPlayer.h
|
| @@ -284,6 +284,15 @@ class WebMediaPlayer {
|
| const WebVector<TrackId>& enabledTrackIds) {}
|
| // |selectedTrackId| is null if no track is selected.
|
| virtual void selectedVideoTrackChanged(TrackId* selectedTrackId) {}
|
| +
|
| + // TODO(kainino): This is a prototype implementation for getting the width,
|
| + // height, and timestamp of the last frame uploaded to a WebGL texture.
|
| + // https://crbug.com/639174
|
| + virtual bool getCurrentFrameInfo(unsigned* width,
|
| + unsigned* height,
|
| + double* timestamp) {
|
| + return false;
|
| + }
|
| };
|
|
|
| } // namespace blink
|
|
|