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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp

Issue 2366253002: Remove ActiveDOMObject::stop() (Closed)
Patch Set: temp Created 4 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
Index: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
index e9f9ba3a2b7fbdbf2ffd4e583e8cf446beea7d72..e18e87eabf77bc43d480d9b35ef2b335edd7262f 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
@@ -3220,8 +3220,8 @@ void HTMLMediaElement::clearMediaPlayer() {
layoutObject()->setShouldDoFullPaintInvalidation();
}
-void HTMLMediaElement::stop() {
- BLINK_MEDIA_LOG << "stop(" << (void*)this << ")";
+void HTMLMediaElement::contextDestroyed() {
+ BLINK_MEDIA_LOG << "contextDestroyed(" << (void*)this << ")";
// Close the async event queue so that no events are enqueued.
cancelPendingEventsAndCallbacks();

Powered by Google App Engine
This is Rietveld 408576698