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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationRequest.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/modules/presentation/PresentationRequest.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
index c5226b152dd05baaba5ee5986703f0d1dbfdcc0f..a378729c3c5f8cf76fe4928b0a89b293dda3fe2f 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
@@ -87,7 +87,7 @@ const AtomicString& PresentationRequest::interfaceName() const {
}
ExecutionContext* PresentationRequest::getExecutionContext() const {
- return ActiveDOMObject::getExecutionContext();
+ return SuspendableObject::getExecutionContext();
}
void PresentationRequest::addedEventListener(
@@ -205,13 +205,13 @@ const KURL& PresentationRequest::url() const {
DEFINE_TRACE(PresentationRequest) {
EventTargetWithInlineData::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
PresentationRequest::PresentationRequest(ExecutionContext* executionContext,
const KURL& url)
: ActiveScriptWrappable(this),
- ActiveDOMObject(executionContext),
+ SuspendableObject(executionContext),
m_url(url) {}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698