| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 DocumentLoadTiming* timing = documentLoadTiming(); | 302 DocumentLoadTiming* timing = documentLoadTiming(); |
| 303 if (!timing) | 303 if (!timing) |
| 304 return 0; | 304 return 0; |
| 305 | 305 |
| 306 return monotonicTimeToIntegerMilliseconds(timing->loadEventEnd()); | 306 return monotonicTimeToIntegerMilliseconds(timing->loadEventEnd()); |
| 307 } | 307 } |
| 308 | 308 |
| 309 DocumentLoader* PerformanceTiming::documentLoader() const | 309 DocumentLoader* PerformanceTiming::documentLoader() const |
| 310 { | 310 { |
| 311 if (!m_frame) | 311 if (!m_frame) |
| 312 return 0; | 312 return nullptr; |
| 313 | 313 |
| 314 return m_frame->loader().documentLoader(); | 314 return m_frame->loader().documentLoader(); |
| 315 } | 315 } |
| 316 | 316 |
| 317 const DocumentTiming* PerformanceTiming::documentTiming() const | 317 const DocumentTiming* PerformanceTiming::documentTiming() const |
| 318 { | 318 { |
| 319 if (!m_frame) | 319 if (!m_frame) |
| 320 return 0; | 320 return nullptr; |
| 321 | 321 |
| 322 Document* document = m_frame->document(); | 322 Document* document = m_frame->document(); |
| 323 if (!document) | 323 if (!document) |
| 324 return 0; | 324 return nullptr; |
| 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 0; | 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 0; | 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 |
| OLD | NEW |