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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElement.idl

Issue 2749653003: Prototype HTMLVideoElement properties for WebGL texImage2D (Closed)
Patch Set: update 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLVideoElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.idl b/third_party/WebKit/Source/core/html/HTMLVideoElement.idl
index be1a4345a767d94dabbf9c72cfae3eecf034662a..06528a6581a862fc3aaa7f5b3e4bf91dbf38308f 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.idl
@@ -50,4 +50,8 @@ interface HTMLVideoElement : HTMLMediaElement {
// The number of decoded frames that have been dropped by the player
// for performance reasons during playback.
[MeasureAs=PrefixedVideoDroppedFrameCount] readonly attribute unsigned long webkitDroppedFrameCount;
+
+ [RuntimeEnabled=ExperimentalCanvasFeatures] readonly attribute unsigned long webglLastUploadedWidth;
+ [RuntimeEnabled=ExperimentalCanvasFeatures] readonly attribute unsigned long webglLastUploadedHeight;
+ [RuntimeEnabled=ExperimentalCanvasFeatures] readonly attribute double webglLastUploadedTimestamp;
};

Powered by Google App Engine
This is Rietveld 408576698