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

Side by Side Diff: Source/core/timing/PerformanceTiming.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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 325
326 return &document->timing(); 326 return &document->timing();
327 } 327 }
328 328
329 DocumentLoadTiming* PerformanceTiming::documentLoadTiming() const 329 DocumentLoadTiming* PerformanceTiming::documentLoadTiming() const
330 { 330 {
331 DocumentLoader* loader = documentLoader(); 331 DocumentLoader* loader = documentLoader();
332 if (!loader) 332 if (!loader)
333 return nullptr; 333 return nullptr;
334 334
335 return loader->timing(); 335 return &loader->timing();
336 } 336 }
337 337
338 ResourceLoadTiming* PerformanceTiming::resourceLoadTiming() const 338 ResourceLoadTiming* PerformanceTiming::resourceLoadTiming() const
339 { 339 {
340 DocumentLoader* loader = documentLoader(); 340 DocumentLoader* loader = documentLoader();
341 if (!loader) 341 if (!loader)
342 return nullptr; 342 return nullptr;
343 343
344 return loader->response().resourceLoadTiming(); 344 return loader->response().resourceLoadTiming();
345 } 345 }
346 346
347 unsigned long long PerformanceTiming::monotonicTimeToIntegerMilliseconds(double monotonicSeconds) const 347 unsigned long long PerformanceTiming::monotonicTimeToIntegerMilliseconds(double monotonicSeconds) const
348 { 348 {
349 ASSERT(monotonicSeconds >= 0); 349 ASSERT(monotonicSeconds >= 0);
350 const DocumentLoadTiming* timing = documentLoadTiming(); 350 const DocumentLoadTiming* timing = documentLoadTiming();
351 if (!timing) 351 if (!timing)
352 return 0; 352 return 0;
353 353
354 return toIntegerMilliseconds(timing->monotonicTimeToPseudoWallTime(monotonic Seconds)); 354 return toIntegerMilliseconds(timing->monotonicTimeToPseudoWallTime(monotonic Seconds));
355 } 355 }
356 356
357 void PerformanceTiming::trace(Visitor* visitor) 357 void PerformanceTiming::trace(Visitor* visitor)
358 { 358 {
359 DOMWindowProperty::trace(visitor); 359 DOMWindowProperty::trace(visitor);
360 } 360 }
361 361
362 } // namespace blink 362 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/timing/PerformanceResourceTiming.cpp ('k') | Source/core/workers/WorkerMessagingProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698