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

Unified Diff: third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp

Issue 2596443005: Replace DOMWindowProperty in Navigator supplements 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/installedapp/NavigatorInstalledApp.cpp
diff --git a/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp b/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp
index a6c3869b1c73c3eba6f9821d64f39fed5722e214..78545b6bea4c6fcca8bbd8d1e13b43fa4e9782ca 100644
--- a/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp
+++ b/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp
@@ -23,7 +23,7 @@
namespace blink {
NavigatorInstalledApp::NavigatorInstalledApp(LocalFrame* frame)
- : DOMWindowProperty(frame) {}
+ : ContextClient(frame) {}
NavigatorInstalledApp* NavigatorInstalledApp::from(Document& document) {
if (!document.frame() || !document.frame()->domWindow())
@@ -102,7 +102,7 @@ const char* NavigatorInstalledApp::supplementName() {
DEFINE_TRACE(NavigatorInstalledApp) {
Supplement<Navigator>::trace(visitor);
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698