OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 bool WebURLRequest::checkForBrowserSideNavigation() const | 416 bool WebURLRequest::checkForBrowserSideNavigation() const |
417 { | 417 { |
418 return m_private->m_resourceRequest->checkForBrowserSideNavigation(); | 418 return m_private->m_resourceRequest->checkForBrowserSideNavigation(); |
419 } | 419 } |
420 | 420 |
421 void WebURLRequest::setCheckForBrowserSideNavigation(bool check) | 421 void WebURLRequest::setCheckForBrowserSideNavigation(bool check) |
422 { | 422 { |
423 m_private->m_resourceRequest->setCheckForBrowserSideNavigation(check); | 423 m_private->m_resourceRequest->setCheckForBrowserSideNavigation(check); |
424 } | 424 } |
425 | 425 |
| 426 double WebURLRequest::browserNavigationStartTime() const |
| 427 { |
| 428 return m_private->m_resourceRequest->browserNavigationStartTime(); |
| 429 } |
| 430 |
| 431 void WebURLRequest::setBrowserNavigationStartTime(double time) |
| 432 { |
| 433 m_private->m_resourceRequest->setBrowserNavigationStartTime(time); |
| 434 } |
| 435 |
426 double WebURLRequest::uiStartTime() const | 436 double WebURLRequest::uiStartTime() const |
427 { | 437 { |
428 return m_private->m_resourceRequest->uiStartTime(); | 438 return m_private->m_resourceRequest->uiStartTime(); |
429 } | 439 } |
430 | 440 |
431 void WebURLRequest::setUiStartTime(double time) | 441 void WebURLRequest::setUiStartTime(double time) |
432 { | 442 { |
433 m_private->m_resourceRequest->setUIStartTime(time); | 443 m_private->m_resourceRequest->setUIStartTime(time); |
434 } | 444 } |
435 | 445 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 // Subclasses may call this directly so a self-assignment check is needed | 479 // Subclasses may call this directly so a self-assignment check is needed |
470 // here as well as in the public assign method. | 480 // here as well as in the public assign method. |
471 if (m_private == p) | 481 if (m_private == p) |
472 return; | 482 return; |
473 if (m_private) | 483 if (m_private) |
474 m_private->dispose(); | 484 m_private->dispose(); |
475 m_private = p; | 485 m_private = p; |
476 } | 486 } |
477 | 487 |
478 } // namespace blink | 488 } // namespace blink |
OLD | NEW |