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

Unified Diff: third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.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/crypto/DOMWindowCrypto.cpp
diff --git a/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.cpp b/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.cpp
index 1f06297bc974a5d585f82bb75c1268191c834d33..550a00b12f8dc211f07873f31cee3feab5cc36d5 100644
--- a/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.cpp
+++ b/third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.cpp
@@ -36,7 +36,7 @@
namespace blink {
DOMWindowCrypto::DOMWindowCrypto(LocalDOMWindow& window)
- : DOMWindowProperty(window.frame()) {}
+ : ContextClient(window.frame()) {}
const char* DOMWindowCrypto::supplementName() {
return "DOMWindowCrypto";
@@ -65,7 +65,7 @@ Crypto* DOMWindowCrypto::crypto() const {
DEFINE_TRACE(DOMWindowCrypto) {
visitor->trace(m_crypto);
Supplement<LocalDOMWindow>::trace(visitor);
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/crypto/DOMWindowCrypto.h ('k') | third_party/WebKit/Source/modules/quota/DOMWindowQuota.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698