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

Side by Side Diff: Source/core/timing/PerformanceTiming.cpp

Issue 31063004: Have Frame::loader() return a reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 return 0; 305 return 0;
306 306
307 return monotonicTimeToIntegerMilliseconds(timing->loadEventEnd()); 307 return monotonicTimeToIntegerMilliseconds(timing->loadEventEnd());
308 } 308 }
309 309
310 DocumentLoader* PerformanceTiming::documentLoader() const 310 DocumentLoader* PerformanceTiming::documentLoader() const
311 { 311 {
312 if (!m_frame) 312 if (!m_frame)
313 return 0; 313 return 0;
314 314
315 return m_frame->loader()->documentLoader(); 315 return m_frame->loader().documentLoader();
316 } 316 }
317 317
318 const DocumentTiming* PerformanceTiming::documentTiming() const 318 const DocumentTiming* PerformanceTiming::documentTiming() const
319 { 319 {
320 if (!m_frame) 320 if (!m_frame)
321 return 0; 321 return 0;
322 322
323 Document* document = m_frame->document(); 323 Document* document = m_frame->document();
324 if (!document) 324 if (!document)
325 return 0; 325 return 0;
(...skipping 21 matching lines...) Expand all
347 347
348 unsigned long long PerformanceTiming::monotonicTimeToIntegerMilliseconds(double monotonicSeconds) const 348 unsigned long long PerformanceTiming::monotonicTimeToIntegerMilliseconds(double monotonicSeconds) const
349 { 349 {
350 ASSERT(monotonicSeconds >= 0); 350 ASSERT(monotonicSeconds >= 0);
351 const DocumentLoadTiming* timing = documentLoadTiming(); 351 const DocumentLoadTiming* timing = documentLoadTiming();
352 ASSERT(timing); 352 ASSERT(timing);
353 return toIntegerMilliseconds(timing->monotonicTimeToPseudoWallTime(monotonic Seconds)); 353 return toIntegerMilliseconds(timing->monotonicTimeToPseudoWallTime(monotonic Seconds));
354 } 354 }
355 355
356 } // namespace WebCore 356 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/timing/PerformanceNavigation.cpp ('k') | Source/core/xml/parser/XMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698