| Index: chrome/browser/ui/views/reload_button.cc
|
| diff --git a/chrome/browser/ui/views/reload_button.cc b/chrome/browser/ui/views/reload_button.cc
|
| index b88a5ec7a0baf2b7ea4e6b55bc78bd04047cc238..3ed8a04fe5bfa1efe569c7ede43c1f4941712eb8 100644
|
| --- a/chrome/browser/ui/views/reload_button.cc
|
| +++ b/chrome/browser/ui/views/reload_button.cc
|
| @@ -121,7 +121,7 @@ void ReloadButton::ButtonPressed(views::Button* /* button */,
|
| // Shift-clicking or ctrl-clicking the reload button means we should ignore
|
| // any cached content.
|
| int command;
|
| - int flags = mouse_event_flags();
|
| + int flags = event.flags();
|
| if (event.IsShiftDown() || event.IsControlDown()) {
|
| command = IDC_RELOAD_IGNORING_CACHE;
|
| // Mask off Shift and Control so they don't affect the disposition below.
|
|
|