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

Unified Diff: sky/engine/core/html/HTMLVideoElement.cpp

Issue 676923002: Remove the webkit prefix from idl properties and interfaces. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « sky/engine/core/html/HTMLVideoElement.h ('k') | sky/engine/core/html/HTMLVideoElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/html/HTMLVideoElement.cpp
diff --git a/sky/engine/core/html/HTMLVideoElement.cpp b/sky/engine/core/html/HTMLVideoElement.cpp
index b9ab2a9c8a654590bde7b7b854e85f3785c22b47..c22cad85d7ff9b336297601a11f0d9c83eff5baf 100644
--- a/sky/engine/core/html/HTMLVideoElement.cpp
+++ b/sky/engine/core/html/HTMLVideoElement.cpp
@@ -203,22 +203,6 @@ void HTMLVideoElement::didMoveToNewDocument(Document& oldDocument)
HTMLMediaElement::didMoveToNewDocument(oldDocument);
}
-unsigned HTMLVideoElement::webkitDecodedFrameCount() const
-{
- if (!webMediaPlayer())
- return 0;
-
- return webMediaPlayer()->decodedFrameCount();
-}
-
-unsigned HTMLVideoElement::webkitDroppedFrameCount() const
-{
- if (!webMediaPlayer())
- return 0;
-
- return webMediaPlayer()->droppedFrameCount();
-}
-
KURL HTMLVideoElement::posterImageURL() const
{
String url = stripLeadingAndTrailingHTMLSpaces(imageSourceURL());
« no previous file with comments | « sky/engine/core/html/HTMLVideoElement.h ('k') | sky/engine/core/html/HTMLVideoElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698