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

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

Issue 181703004: Have Document::timing() / Document::contextFeatures() return a reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
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;
326 326
327 return document->timing(); 327 return &document->timing();
328 } 328 }
329 329
330 DocumentLoadTiming* PerformanceTiming::documentLoadTiming() const 330 DocumentLoadTiming* PerformanceTiming::documentLoadTiming() const
331 { 331 {
332 DocumentLoader* loader = documentLoader(); 332 DocumentLoader* loader = documentLoader();
333 if (!loader) 333 if (!loader)
334 return 0; 334 return 0;
335 335
336 return loader->timing(); 336 return loader->timing();
337 } 337 }
(...skipping 11 matching lines...) Expand all
349 { 349 {
350 ASSERT(monotonicSeconds >= 0); 350 ASSERT(monotonicSeconds >= 0);
351 const DocumentLoadTiming* timing = documentLoadTiming(); 351 const DocumentLoadTiming* timing = documentLoadTiming();
352 if (!timing) 352 if (!timing)
353 return 0; 353 return 0;
354 354
355 return toIntegerMilliseconds(timing->monotonicTimeToPseudoWallTime(monotonic Seconds)); 355 return toIntegerMilliseconds(timing->monotonicTimeToPseudoWallTime(monotonic Seconds));
356 } 356 }
357 357
358 } // namespace WebCore 358 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698