| Index: chrome/browser/ui/browser_commands.cc
|
| diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc
|
| index 2cad2c4f56fdbb6911af7eed8b8dc342b9db2eee..e2bd5ce56ce78e40c54b0a6a1fc5eaca0b3e44b7 100644
|
| --- a/chrome/browser/ui/browser_commands.cc
|
| +++ b/chrome/browser/ui/browser_commands.cc
|
| @@ -214,7 +214,7 @@ WebContents* GetTabAndRevertIfNecessary(Browser* browser,
|
|
|
| void ReloadInternal(Browser* browser,
|
| WindowOpenDisposition disposition,
|
| - bool ignore_cache) {
|
| + bool bypass_cache) {
|
| // As this is caused by a user action, give the focus to the page.
|
| //
|
| // Also notify RenderViewHostDelegate of the user gesture; this is
|
| @@ -226,10 +226,10 @@ void ReloadInternal(Browser* browser,
|
|
|
| DevToolsWindow* devtools =
|
| DevToolsWindow::GetInstanceForInspectedWebContents(new_tab);
|
| - if (devtools && devtools->ReloadInspectedWebContents(ignore_cache))
|
| + if (devtools && devtools->ReloadInspectedWebContents(bypass_cache))
|
| return;
|
|
|
| - if (ignore_cache)
|
| + if (bypass_cache)
|
| new_tab->GetController().ReloadBypassingCache(true);
|
| else
|
| new_tab->GetController().Reload(true);
|
|
|