OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/system/chromeos/tray_caps_lock.h" | 5 #include "ash/system/chromeos/tray_caps_lock.h" |
6 | 6 |
7 #include "ash/metrics/user_metrics_recorder.h" | 7 #include "ash/metrics/user_metrics_recorder.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ash/system/tray/actionable_view.h" | 9 #include "ash/system/tray/actionable_view.h" |
10 #include "ash/system/tray/fixed_sized_image_view.h" | 10 #include "ash/system/tray/fixed_sized_image_view.h" |
11 #include "ash/system/tray/system_tray_notifier.h" | 11 #include "ash/system/tray/system_tray_notifier.h" |
12 #include "ash/system/tray/tray_constants.h" | 12 #include "ash/system/tray/tray_constants.h" |
13 #include "chromeos/ime/input_method_manager.h" | 13 #include "chromeos/ime/input_method_manager.h" |
14 #include "chromeos/ime/xkeyboard.h" | 14 #include "chromeos/ime/xkeyboard.h" |
15 #include "grit/ash_resources.h" | 15 #include "grit/ash_resources.h" |
16 #include "grit/ash_strings.h" | 16 #include "grit/ash_strings.h" |
17 #include "ui/accessibility/ax_view_state.h" | 17 #include "ui/accessibility/ax_view_state.h" |
18 #include "ui/base/resource/resource_bundle.h" | 18 #include "ui/base/resource/resource_bundle.h" |
19 #include "ui/gfx/image/image.h" | 19 #include "ui/gfx/image/image.h" |
20 #include "ui/views/controls/image_view.h" | 20 #include "ui/views/controls/image_view.h" |
21 #include "ui/views/controls/label.h" | 21 #include "ui/views/controls/label.h" |
22 #include "ui/views/layout/box_layout.h" | 22 #include "ui/views/layout/box_layout.h" |
23 #include "ui/views/widget/widget.h" | 23 #include "ui/views/widget/widget.h" |
24 | 24 |
25 namespace ash { | 25 namespace ash { |
26 namespace internal { | |
27 | |
28 namespace { | 26 namespace { |
29 | 27 |
30 bool CapsLockIsEnabled() { | 28 bool CapsLockIsEnabled() { |
31 chromeos::input_method::InputMethodManager* ime = | 29 chromeos::input_method::InputMethodManager* ime = |
32 chromeos::input_method::InputMethodManager::Get(); | 30 chromeos::input_method::InputMethodManager::Get(); |
33 return (ime && ime->GetXKeyboard()) ? ime->GetXKeyboard()->CapsLockIsEnabled() | 31 return (ime && ime->GetXKeyboard()) ? ime->GetXKeyboard()->CapsLockIsEnabled() |
34 : false; | 32 : false; |
35 } | 33 } |
36 | 34 |
37 } | 35 } |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 } | 207 } |
210 | 208 |
211 void TrayCapsLock::DestroyDefaultView() { | 209 void TrayCapsLock::DestroyDefaultView() { |
212 default_ = NULL; | 210 default_ = NULL; |
213 } | 211 } |
214 | 212 |
215 void TrayCapsLock::DestroyDetailedView() { | 213 void TrayCapsLock::DestroyDetailedView() { |
216 detailed_ = NULL; | 214 detailed_ = NULL; |
217 } | 215 } |
218 | 216 |
219 } // namespace internal | |
220 } // namespace ash | 217 } // namespace ash |
OLD | NEW |