diff options
author | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-11 00:30:27 +0000 |
---|---|---|
committer | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-11 00:30:27 +0000 |
commit | b02a1f687526c0d012b4a8f4215cfd0056f0718f (patch) | |
tree | 7d131d38fbbb0b6df544aadbbfe0c2aa56973b60 /chrome/renderer/navigation_state.cc | |
parent | a6ab110bc7fa18aaf7f69f054344f12488291139 (diff) | |
download | chromium_src-b02a1f687526c0d012b4a8f4215cfd0056f0718f.zip chromium_src-b02a1f687526c0d012b4a8f4215cfd0056f0718f.tar.gz chromium_src-b02a1f687526c0d012b4a8f4215cfd0056f0718f.tar.bz2 |
PLT updates.
Fix a bug introduced by me in 65223. The boolean indicating whether histograms
have been dumped must be on navigation_state instead of page_load_histograms.
Introduce a histogram for the Web Timing page load time which measures
the commit to the start/end of the load event. Also introduce two histograms
for troubleshooting abandonment and missing starts. We will use these
histograms temporarily for vetting these metrics.
BUG=None
TEST=None
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65738 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/navigation_state.cc')
-rw-r--r-- | chrome/renderer/navigation_state.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/renderer/navigation_state.cc b/chrome/renderer/navigation_state.cc index de0c099..fe1c6d9 100644 --- a/chrome/renderer/navigation_state.cc +++ b/chrome/renderer/navigation_state.cc @@ -32,6 +32,7 @@ NavigationState::NavigationState(PageTransition::Type transition_type, : transition_type_(transition_type), load_type_(UNDEFINED_LOAD), request_time_(request_time), + load_histograms_recorded_(false), request_committed_(false), is_content_initiated_(is_content_initiated), pending_page_id_(pending_page_id), |