| Index: content/public/test/test_renderer_host.cc
 | 
| diff --git a/content/public/test/test_renderer_host.cc b/content/public/test/test_renderer_host.cc
 | 
| index 2eabd212c1ccdadea8b5e73faa94fec25fff77b5..b813c80ff56d1f8eb9ced4f6b5ed3824723ff87a 100644
 | 
| --- a/content/public/test/test_renderer_host.cc
 | 
| +++ b/content/public/test/test_renderer_host.cc
 | 
| @@ -242,7 +242,7 @@ void RenderViewHostTestHarness::NavigateAndCommit(const GURL& url) {
 | 
|  void RenderViewHostTestHarness::Reload() {
 | 
|    NavigationEntry* entry = controller().GetLastCommittedEntry();
 | 
|    DCHECK(entry);
 | 
| -  controller().Reload(false);
 | 
| +  controller().Reload(ReloadType::NORMAL, false);
 | 
|    RenderFrameHostTester::For(main_rfh())
 | 
|        ->SendNavigateWithTransition(entry->GetUniqueID(),
 | 
|                                     false, entry->GetURL(),
 | 
| @@ -252,7 +252,7 @@ void RenderViewHostTestHarness::Reload() {
 | 
|  void RenderViewHostTestHarness::FailedReload() {
 | 
|    NavigationEntry* entry = controller().GetLastCommittedEntry();
 | 
|    DCHECK(entry);
 | 
| -  controller().Reload(false);
 | 
| +  controller().Reload(ReloadType::NORMAL, false);
 | 
|    RenderFrameHostTester::For(main_rfh())
 | 
|        ->SendFailedNavigate(entry->GetUniqueID(), false, entry->GetURL());
 | 
|  }
 | 
| 
 |