| Index: chrome/browser/ui/browser_command_controller.cc
|
| diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc
|
| index 8d6f45fee3819cef94e5c58dd296ad63fd1acd23..125126de6c63eee0ace3dd5f09879de389270d92 100644
|
| --- a/chrome/browser/ui/browser_command_controller.cc
|
| +++ b/chrome/browser/ui/browser_command_controller.cc
|
| @@ -187,12 +187,8 @@ bool BrowserCommandController::IsReservedCommandOrKey(
|
| }
|
| #endif
|
|
|
| - if (window()->IsFullscreen()) {
|
| - // In fullscreen, all commands except for IDC_FULLSCREEN and IDC_EXIT should
|
| - // be delivered to the web page. See, intent to implement,
|
| - // https://goo.gl/4tJ32G.
|
| - return command_id == IDC_EXIT || command_id == IDC_FULLSCREEN;
|
| - }
|
| + if (window()->IsFullscreen() && command_id == IDC_FULLSCREEN)
|
| + return true;
|
|
|
| #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
| // If this key was registered by the user as a content editing hotkey, then
|
|
|