| Index: content/browser/frame_host/navigation_controller_impl_browsertest.cc
 | 
| diff --git a/content/browser/frame_host/navigation_controller_impl_browsertest.cc b/content/browser/frame_host/navigation_controller_impl_browsertest.cc
 | 
| index 66646f7b60b19f0da05748a5d1bd3982bc95de55..6f54e00f1e96155094ac5adcfb32d3f6fd7f003b 100644
 | 
| --- a/content/browser/frame_host/navigation_controller_impl_browsertest.cc
 | 
| +++ b/content/browser/frame_host/navigation_controller_impl_browsertest.cc
 | 
| @@ -289,7 +289,7 @@ class FrameNavigateParamsCapturer : public WebContentsObserver {
 | 
|        message_loop_runner_->Quit();
 | 
|    }
 | 
|  
 | 
| -  void DidStopLoading(RenderViewHost* render_view_host) override {
 | 
| +  void DidStopLoading() override {
 | 
|      if (!navigations_remaining_)
 | 
|        message_loop_runner_->Quit();
 | 
|    }
 | 
| @@ -359,9 +359,7 @@ class LoadCommittedCapturer : public WebContentsObserver {
 | 
|        message_loop_runner_->Quit();
 | 
|    }
 | 
|  
 | 
| -  void DidStopLoading(RenderViewHost* render_view_host) override {
 | 
| -    message_loop_runner_->Quit();
 | 
| -  }
 | 
| +  void DidStopLoading() override { message_loop_runner_->Quit(); }
 | 
|  
 | 
|    // The id of the FrameTreeNode whose navigations to observe.
 | 
|    int frame_tree_node_id_;
 | 
| 
 |