Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: ash/accelerators/accelerator_controller.cc

Issue 10332051: Revert "Do not consume Shift+Alt in Ash to make Chromoting happy." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ash/accelerators/accelerator_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/accelerators/accelerator_controller.cc
diff --git a/ash/accelerators/accelerator_controller.cc b/ash/accelerators/accelerator_controller.cc
index 81ed6f787a844d3eea10159021aba71918bdff89..f8782ea178f98fcddb01f759836e450eef0cafdf 100644
--- a/ash/accelerators/accelerator_controller.cc
+++ b/ash/accelerators/accelerator_controller.cc
@@ -427,13 +427,8 @@ bool AcceleratorController::AcceleratorPressed(
oak::ShowOakWindow();
break;
case NEXT_IME:
- if (ime_control_delegate_.get()) {
- ime_control_delegate_->HandleNextIme();
- // We shouldn't consume Shift+Alt. crbug.com/123720
- // TODO(yusukes): We might be able to remove the hack when issue 123856
- // is fixed.
- return false;
- }
+ if (ime_control_delegate_.get())
+ return ime_control_delegate_->HandleNextIme();
break;
case PREVIOUS_IME:
if (ime_control_delegate_.get())
« no previous file with comments | « no previous file | ash/accelerators/accelerator_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698