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

Unified Diff: Source/modules/performance/SharedWorkerPerformance.cpp

Issue 916273002: Make DocumentLoader::timing return a reference (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 5 years, 10 months 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 | « Source/core/workers/WorkerMessagingProxy.cpp ('k') | Source/modules/webmidi/MIDIAccess.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/performance/SharedWorkerPerformance.cpp
diff --git a/Source/modules/performance/SharedWorkerPerformance.cpp b/Source/modules/performance/SharedWorkerPerformance.cpp
index 074c2ce8b32a5c1d92747df4abe1421b01243ac2..90fbea53f6488a89961e53bfe9900044d0e3ad86 100644
--- a/Source/modules/performance/SharedWorkerPerformance.cpp
+++ b/Source/modules/performance/SharedWorkerPerformance.cpp
@@ -71,7 +71,7 @@ double SharedWorkerPerformance::getWorkerStart(ExecutionContext* context, Shared
if (!document->loader())
return 0;
- double navigationStart = document->loader()->timing()->navigationStart();
+ double navigationStart = document->loader()->timing().navigationStart();
return m_timeOrigin - navigationStart;
}
« no previous file with comments | « Source/core/workers/WorkerMessagingProxy.cpp ('k') | Source/modules/webmidi/MIDIAccess.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698