| Index: third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/MediaQueryList.cpp b/third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| index 5b17f10f8a1ff025d7dc14bcee1b98a87635127d..b036426edd1a264976acb1852b406a8a88bfc62e 100644
|
| --- a/third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| +++ b/third_party/WebKit/Source/core/css/MediaQueryList.cpp
|
| @@ -39,7 +39,7 @@ MediaQueryList::MediaQueryList(ExecutionContext* context,
|
| MediaQueryMatcher* matcher,
|
| MediaQuerySet* media)
|
| : ActiveScriptWrappable(this),
|
| - ActiveDOMObject(context),
|
| + SuspendableObject(context),
|
| m_matcher(matcher),
|
| m_media(media),
|
| m_matchesDirty(true),
|
| @@ -121,7 +121,7 @@ DEFINE_TRACE(MediaQueryList) {
|
| visitor->trace(m_media);
|
| visitor->trace(m_listeners);
|
| EventTargetWithInlineData::trace(visitor);
|
| - ActiveDOMObject::trace(visitor);
|
| + SuspendableObject::trace(visitor);
|
| }
|
|
|
| const AtomicString& MediaQueryList::interfaceName() const {
|
| @@ -129,7 +129,7 @@ const AtomicString& MediaQueryList::interfaceName() const {
|
| }
|
|
|
| ExecutionContext* MediaQueryList::getExecutionContext() const {
|
| - return ActiveDOMObject::getExecutionContext();
|
| + return SuspendableObject::getExecutionContext();
|
| }
|
|
|
| } // namespace blink
|
|
|