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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationReceiver.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
« no previous file with comments | « third_party/WebKit/Source/modules/presentation/PresentationReceiver.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp b/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
index 7a7536819937e968bda6951325cbcb08d4388b8d..9d22bcd47d72a4da12c5294c8b6267a6ac9c5621 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
@@ -18,7 +18,7 @@ namespace blink {
PresentationReceiver::PresentationReceiver(LocalFrame* frame,
WebPresentationClient* client)
- : DOMWindowProperty(frame) {
+ : ContextClient(frame) {
m_connectionList = new PresentationConnectionList(frame->document());
if (client)
@@ -68,6 +68,7 @@ void PresentationReceiver::registerConnection(
DEFINE_TRACE(PresentationReceiver) {
visitor->trace(m_connectionList);
visitor->trace(m_connectionListProperty);
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
+
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/presentation/PresentationReceiver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698