OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/keyboard/keyboard_ui.h" | 5 #include "ash/keyboard/keyboard_ui.h" |
6 | 6 |
7 #include "ash/accessibility_delegate.h" | 7 #include "ash/common/accessibility_delegate.h" |
8 #include "ash/keyboard/keyboard_ui_observer.h" | 8 #include "ash/keyboard/keyboard_ui_observer.h" |
9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/system/tray/system_tray_notifier.h" | 10 #include "ash/system/tray/system_tray_notifier.h" |
11 #include "ash/system/tray_accessibility.h" | 11 #include "ash/system/tray_accessibility.h" |
12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
13 #include "ui/keyboard/keyboard_controller.h" | 13 #include "ui/keyboard/keyboard_controller.h" |
14 | 14 |
15 namespace ash { | 15 namespace ash { |
16 | 16 |
17 class KeyboardUIImpl : public KeyboardUI, public AccessibilityObserver { | 17 class KeyboardUIImpl : public KeyboardUI, public AccessibilityObserver { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 observers_.AddObserver(observer); | 60 observers_.AddObserver(observer); |
61 } | 61 } |
62 | 62 |
63 void KeyboardUI::RemoveObserver(KeyboardUIObserver* observer) { | 63 void KeyboardUI::RemoveObserver(KeyboardUIObserver* observer) { |
64 observers_.RemoveObserver(observer); | 64 observers_.RemoveObserver(observer); |
65 } | 65 } |
66 | 66 |
67 KeyboardUI::KeyboardUI() {} | 67 KeyboardUI::KeyboardUI() {} |
68 | 68 |
69 } // namespace ash | 69 } // namespace ash |
OLD | NEW |