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

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

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: Created 4 years 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/PublicURLManager.cpp
diff --git a/third_party/WebKit/Source/core/html/PublicURLManager.cpp b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
index 57655b2d84d39ce9836a72e425c483b318eeb87b..4695a7a9ab34e05891b79c1d0bbf3698bdc1ad65 100644
--- a/third_party/WebKit/Source/core/html/PublicURLManager.cpp
+++ b/third_party/WebKit/Source/core/html/PublicURLManager.cpp
@@ -43,7 +43,7 @@ PublicURLManager* PublicURLManager::create(ExecutionContext* context) {
}
PublicURLManager::PublicURLManager(ExecutionContext* context)
- : ActiveDOMObject(context), m_isStopped(false) {}
+ : SuspendableObject(context), m_isStopped(false) {}
String PublicURLManager::registerURL(ExecutionContext* context,
URLRegistrable* registrable,
@@ -107,7 +107,7 @@ void PublicURLManager::contextDestroyed() {
}
DEFINE_TRACE(PublicURLManager) {
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698