Chromium Code Reviews| Index: content/browser/frame_host/navigation_request.cc |
| diff --git a/content/browser/frame_host/navigation_request.cc b/content/browser/frame_host/navigation_request.cc |
| index 34647b93f93e788ec9e81f797a86526d1bdf3da4..7625914c3bbf27c610fd78a428b38bdd8e23423c 100644 |
| --- a/content/browser/frame_host/navigation_request.cc |
| +++ b/content/browser/frame_host/navigation_request.cc |
| @@ -108,7 +108,12 @@ void NavigationRequest::OnRequestFailed(int net_error) { |
| DCHECK(state_ == STARTED); |
| state_ = FAILED; |
| // TODO(davidben): Network failures should display a network error page. |
| - NOTIMPLEMENTED(); |
| + NOTIMPLEMENTED() << " where net_error=" << net_error; |
| +} |
| + |
| +void NavigationRequest::NavigationRequested(base::TimeTicks timestamp) { |
| + frame_tree_node_->navigator()->LogResourceRequestTime(timestamp, |
| + common_params_.url); |
|
davidben
2015/01/28 21:33:26
This is just measuring the time to do two thread h
carlosk
2015/01/30 14:01:46
In fact I think we'll actually be measuring a sing
|
| } |
| } // namespace content |