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

Unified Diff: third_party/WebKit/Source/core/css/MediaQueryList.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/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

Powered by Google App Engine
This is Rietveld 408576698