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

Unified Diff: third_party/WebKit/Source/core/streams/UnderlyingSourceBase.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/streams/UnderlyingSourceBase.cpp
diff --git a/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.cpp b/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.cpp
index 5392edc779ecf38005a8837283e296c065455205..d407684cdcc907028345d6646f4c231ed6c274ee 100644
--- a/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.cpp
+++ b/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.cpp
@@ -57,7 +57,7 @@ bool UnderlyingSourceBase::hasPendingActivity() const {
return m_controller && m_controller->isActive() && m_isStreamLocked;
}
-void UnderlyingSourceBase::stop() {
+void UnderlyingSourceBase::contextDestroyed() {
if (m_controller) {
m_controller->noteHasBeenCanceled();
m_controller.clear();

Powered by Google App Engine
This is Rietveld 408576698