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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceTiming.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
« no previous file with comments | « third_party/WebKit/Source/core/timing/PerformanceTiming.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/timing/PerformanceTiming.cpp
diff --git a/third_party/WebKit/Source/core/timing/PerformanceTiming.cpp b/third_party/WebKit/Source/core/timing/PerformanceTiming.cpp
index aa6fd3ce1d324ec811e08087d78741c9ad97977e..d659edee06e9e59919da93e01a9bc08414cba8dd 100644
--- a/third_party/WebKit/Source/core/timing/PerformanceTiming.cpp
+++ b/third_party/WebKit/Source/core/timing/PerformanceTiming.cpp
@@ -59,7 +59,7 @@ static double toDoubleSeconds(unsigned long long integerMilliseconds) {
}
PerformanceTiming::PerformanceTiming(LocalFrame* frame)
- : DOMWindowProperty(frame) {}
+ : ContextClient(frame) {}
unsigned long long PerformanceTiming::navigationStart() const {
DocumentLoadTiming* timing = documentLoadTiming();
@@ -538,7 +538,7 @@ double PerformanceTiming::integerMillisecondsToMonotonicTime(
}
DEFINE_TRACE(PerformanceTiming) {
- DOMWindowProperty::trace(visitor);
+ ContextClient::trace(visitor);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/timing/PerformanceTiming.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698