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

Side by Side Diff: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp

Issue 1425823002: (DEPRECATED) Send navigation_start to browser process in DidStartProvisionalLoad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Name change + blink layering Created 5 years, 1 month 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
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698