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

Unified Diff: third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.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/quota/NavigatorStorageQuota.cpp
diff --git a/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp b/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp
index 87789fa0da20a3b7a0c43eb76b6dd97bc146cf26..77f5b5a46875ddd467ec0621bb12b6a1c818e7d7 100644
--- a/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp
+++ b/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp
@@ -38,7 +38,7 @@
namespace blink {
NavigatorStorageQuota::NavigatorStorageQuota(LocalFrame* frame)
- : DOMWindowProperty(frame) {}
+ : ContextClient(frame) {}
const char* NavigatorStorageQuota::supplementName() {
return "NavigatorStorageQuota";
@@ -104,7 +104,7 @@ DEFINE_TRACE(NavigatorStorageQuota) {
visitor->trace(m_persistentStorage);
visitor->trace(m_storageManager);
Supplement<Navigator>::trace(visitor);
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h ('k') | third_party/WebKit/Source/modules/vr/NavigatorVR.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698