OLD | NEW |
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 "athena/virtual_keyboard/public/virtual_keyboard_manager.h" | 5 #include "athena/virtual_keyboard/public/virtual_keyboard_manager.h" |
6 | 6 |
7 #include "athena/common/container_priorities.h" | |
8 #include "athena/common/fill_layout_manager.h" | |
9 #include "athena/screen/public/screen_manager.h" | 7 #include "athena/screen/public/screen_manager.h" |
| 8 #include "athena/util/container_priorities.h" |
| 9 #include "athena/util/fill_layout_manager.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "content/public/browser/browser_context.h" | 13 #include "content/public/browser/browser_context.h" |
14 #include "ui/aura/client/aura_constants.h" | 14 #include "ui/aura/client/aura_constants.h" |
15 #include "ui/aura/layout_manager.h" | 15 #include "ui/aura/layout_manager.h" |
16 #include "ui/aura/window.h" | 16 #include "ui/aura/window.h" |
17 #include "ui/keyboard/keyboard.h" | 17 #include "ui/keyboard/keyboard.h" |
18 #include "ui/keyboard/keyboard_constants.h" | 18 #include "ui/keyboard/keyboard_constants.h" |
19 #include "ui/keyboard/keyboard_controller.h" | 19 #include "ui/keyboard/keyboard_controller.h" |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 return instance; | 118 return instance; |
119 } | 119 } |
120 | 120 |
121 void VirtualKeyboardManager::Shutdown() { | 121 void VirtualKeyboardManager::Shutdown() { |
122 CHECK(instance); | 122 CHECK(instance); |
123 delete instance; | 123 delete instance; |
124 CHECK(!instance); | 124 CHECK(!instance); |
125 } | 125 } |
126 | 126 |
127 } // namespace athena | 127 } // namespace athena |
OLD | NEW |