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

Side by Side Diff: ash/accelerators/accelerator_router.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/accelerators/accelerator_router.h" 5 #include "ash/accelerators/accelerator_router.h"
6 6
7 #include "ash/accelerators/accelerator_controller.h" 7 #include "ash/accelerators/accelerator_controller.h"
8 #include "ash/common/wm_shell.h"
9 #include "ash/common/wm_window.h"
8 #include "ash/wm/window_state.h" 10 #include "ash/wm/window_state.h"
9 #include "ash/wm_shell.h"
10 #include "ash/wm_window.h"
11 #include "base/metrics/histogram_macros.h" 11 #include "base/metrics/histogram_macros.h"
12 #include "base/stl_util.h" 12 #include "base/stl_util.h"
13 #include "ui/base/accelerators/accelerator.h" 13 #include "ui/base/accelerators/accelerator.h"
14 #include "ui/events/event.h" 14 #include "ui/events/event.h"
15 15
16 namespace ash { 16 namespace ash {
17 17
18 namespace { 18 namespace {
19 19
20 // Returns true if |key_code| is a key usually handled directly by the shell. 20 // Returns true if |key_code| is a key usually handled directly by the shell.
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 // Handle preferred accelerators (such as ALT-TAB) before sending 126 // Handle preferred accelerators (such as ALT-TAB) before sending
127 // to the target. 127 // to the target.
128 if (accelerator_controller->IsPreferred(accelerator)) 128 if (accelerator_controller->IsPreferred(accelerator))
129 return true; 129 return true;
130 130
131 return WmShell::Get()->GetAppListTargetVisibility(); 131 return WmShell::Get()->GetAppListTargetVisibility();
132 } 132 }
133 133
134 } // namespace ash 134 } // namespace ash
OLDNEW
« no previous file with comments | « ash/accelerators/accelerator_interactive_uitest_chromeos.cc ('k') | ash/accelerators/ash_focus_manager_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698