| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |