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

Unified Diff: third_party/WebKit/Source/modules/quota/DOMWindowQuota.cpp

Issue 2598463004: Replace DOMWindowProperty in DOMWindow's 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/DOMWindowQuota.cpp
diff --git a/third_party/WebKit/Source/modules/quota/DOMWindowQuota.cpp b/third_party/WebKit/Source/modules/quota/DOMWindowQuota.cpp
index cd5143ef43d50972d78bf0b2a43d5143e0306b4a..edd1b46d6a559a246164081c5184adff6077c13c 100644
--- a/third_party/WebKit/Source/modules/quota/DOMWindowQuota.cpp
+++ b/third_party/WebKit/Source/modules/quota/DOMWindowQuota.cpp
@@ -38,7 +38,7 @@
namespace blink {
DOMWindowQuota::DOMWindowQuota(LocalDOMWindow& window)
- : DOMWindowProperty(window.frame()) {}
+ : ContextClient(window.frame()) {}
const char* DOMWindowQuota::supplementName() {
return "DOMWindowQuota";
@@ -69,7 +69,7 @@ DeprecatedStorageInfo* DOMWindowQuota::webkitStorageInfo() const {
DEFINE_TRACE(DOMWindowQuota) {
visitor->trace(m_storageInfo);
Supplement<LocalDOMWindow>::trace(visitor);
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698