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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp

Issue 2592953004: Replace DOMWindowProperty in core/timing/ 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/core/timing/PerformanceNavigation.cpp
diff --git a/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp b/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
index 3bcfef1243183643e7dd013445849ac507c58e95..dce72f9af46691422688ad3a69fd4e5c149f5441 100644
--- a/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
+++ b/third_party/WebKit/Source/core/timing/PerformanceNavigation.cpp
@@ -40,7 +40,7 @@
namespace blink {
PerformanceNavigation::PerformanceNavigation(LocalFrame* frame)
- : DOMWindowProperty(frame) {}
+ : ContextClient(frame) {}
unsigned short PerformanceNavigation::type() const {
if (!frame())
@@ -84,7 +84,7 @@ ScriptValue PerformanceNavigation::toJSONForBinding(
}
DEFINE_TRACE(PerformanceNavigation) {
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698