| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |