Index: content/browser/frame_host/navigation_controller_impl.cc |
diff --git a/content/browser/frame_host/navigation_controller_impl.cc b/content/browser/frame_host/navigation_controller_impl.cc |
index c87e636b6e4410b74cd94ed4f56d4e8745c71817..2e845ae1e705d8515294f56bf88757b1d041fc44 100644 |
--- a/content/browser/frame_host/navigation_controller_impl.cc |
+++ b/content/browser/frame_host/navigation_controller_impl.cc |
@@ -265,7 +265,7 @@ void NavigationControllerImpl::Restore( |
} |
void NavigationControllerImpl::Reload(bool check_for_repost) { |
- ReloadInternal(check_for_repost, ReloadType::MAIN_RESOURCE); |
+ ReloadInternal(check_for_repost, ReloadType::NORMAL); |
} |
void NavigationControllerImpl::ReloadBypassingCache(bool check_for_repost) { |
ReloadInternal(check_for_repost, ReloadType::BYPASSING_CACHE); |
@@ -327,7 +327,7 @@ void NavigationControllerImpl::ReloadInternal(bool check_for_repost, |
base::TimeDelta delta = now - last_committed_reload_time_; |
UMA_HISTOGRAM_MEDIUM_TIMES("Navigation.Reload.ReloadToReloadDuration", |
delta); |
- if (last_committed_reload_type_ == ReloadType::MAIN_RESOURCE) { |
+ if (last_committed_reload_type_ == ReloadType::NORMAL) { |
UMA_HISTOGRAM_MEDIUM_TIMES( |
"Navigation.Reload.ReloadMainResourceToReloadDuration", delta); |
} |