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

Unified Diff: sky/engine/core/html/HTMLMediaElement.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/HTMLMediaElement.h ('k') | sky/engine/core/html/HTMLMediaElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/html/HTMLMediaElement.cpp
diff --git a/sky/engine/core/html/HTMLMediaElement.cpp b/sky/engine/core/html/HTMLMediaElement.cpp
index bd50e21eb487b79cf490011bf4c2bf7c5268558e..71cf4130d7030902fd6042f7399f97bf8aa988ee 100644
--- a/sky/engine/core/html/HTMLMediaElement.cpp
+++ b/sky/engine/core/html/HTMLMediaElement.cpp
@@ -2353,20 +2353,6 @@ blink::WebLayer* HTMLMediaElement::platformLayer() const
return m_webLayer;
}
-unsigned HTMLMediaElement::webkitAudioDecodedByteCount() const
-{
- if (!webMediaPlayer())
- return 0;
- return webMediaPlayer()->audioDecodedByteCount();
-}
-
-unsigned HTMLMediaElement::webkitVideoDecodedByteCount() const
-{
- if (!webMediaPlayer())
- return 0;
- return webMediaPlayer()->videoDecodedByteCount();
-}
-
bool HTMLMediaElement::isURLAttribute(const Attribute& attribute) const
{
return attribute.name() == HTMLNames::srcAttr || HTMLElement::isURLAttribute(attribute);
« no previous file with comments | « sky/engine/core/html/HTMLMediaElement.h ('k') | sky/engine/core/html/HTMLMediaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698