| Index: content/shell/browser/shell.cc
 | 
| diff --git a/content/shell/browser/shell.cc b/content/shell/browser/shell.cc
 | 
| index 7659e7f562169b24a6ae2fb9d7911ba6b6926ba5..f25b9031a76ae83d48376a88c97361fd43013c85 100644
 | 
| --- a/content/shell/browser/shell.cc
 | 
| +++ b/content/shell/browser/shell.cc
 | 
| @@ -262,12 +262,12 @@ void Shell::GoBackOrForward(int offset) {
 | 
|  }
 | 
|  
 | 
|  void Shell::Reload() {
 | 
| -  web_contents_->GetController().Reload(false);
 | 
| +  web_contents_->GetController().Reload(ReloadType::NORMAL, false);
 | 
|    web_contents_->Focus();
 | 
|  }
 | 
|  
 | 
|  void Shell::ReloadBypassingCache() {
 | 
| -  web_contents_->GetController().ReloadBypassingCache(false);
 | 
| +  web_contents_->GetController().Reload(ReloadType::BYPASSING_CACHE, false);
 | 
|    web_contents_->Focus();
 | 
|  }
 | 
|  
 | 
| 
 |