| 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
|
|
|