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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp

Issue 2592073002: Replace DOMWindowProperty in modules/presentation/ with ContextClient (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/PresentationConnection.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp b/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
index 9481b5e19e88a4b15b6bf1500f7aa9027d235fda..67f98aace0005002da40efd8c93f9f15bc0c5c73 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
@@ -150,7 +150,7 @@ class PresentationConnection::BlobLoader final
PresentationConnection::PresentationConnection(LocalFrame* frame,
const String& id,
const KURL& url)
- : DOMWindowProperty(frame),
+ : ContextClient(frame),
m_id(id),
m_url(url),
m_state(WebPresentationConnectionState::Connecting),
@@ -251,7 +251,7 @@ DEFINE_TRACE(PresentationConnection) {
visitor->trace(m_blobLoader);
visitor->trace(m_messages);
EventTargetWithInlineData::trace(visitor);
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
const AtomicString& PresentationConnection::state() const {

Powered by Google App Engine
This is Rietveld 408576698