Index: Source/core/html/MediaController.cpp |
diff --git a/Source/core/html/MediaController.cpp b/Source/core/html/MediaController.cpp |
index 6ab9bf16ad11b896c6b9213f91b302541fc412fb..d0ba80e377c2a7392f1e196e46b2c4befc4f8f8e 100644 |
--- a/Source/core/html/MediaController.cpp |
+++ b/Source/core/html/MediaController.cpp |
@@ -596,18 +596,6 @@ bool MediaController::hasAudio() const |
return false; |
} |
-bool MediaController::canPlay() const |
-{ |
- if (m_paused) |
- return true; |
- |
- for (size_t index = 0; index < m_mediaElements.size(); ++index) { |
- if (!m_mediaElements[index]->canPlay()) |
- return false; |
- } |
- return true; |
-} |
- |
const AtomicString& MediaController::interfaceName() const |
{ |
return EventTargetNames::MediaController; |