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 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_BASE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_BASE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_BASE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_BASE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
12 #include "chrome/browser/chromeos/input_method/ibus_controller.h" | 12 #include "chrome/browser/chromeos/input_method/ibus_controller.h" |
13 #include "chrome/browser/chromeos/input_method/input_method_config.h" | 13 #include "chromeos/ime/input_method_config.h" |
14 #include "chrome/browser/chromeos/input_method/input_method_property.h" | 14 #include "chromeos/ime/input_method_property.h" |
15 | 15 |
16 namespace chromeos { | 16 namespace chromeos { |
17 namespace input_method { | 17 namespace input_method { |
18 | 18 |
19 // The common implementation of the IBusController. This file does not depend on | 19 // The common implementation of the IBusController. This file does not depend on |
20 // libibus, hence is unit-testable. | 20 // libibus, hence is unit-testable. |
21 class IBusControllerBase : public IBusController { | 21 class IBusControllerBase : public IBusController { |
22 public: | 22 public: |
23 IBusControllerBase(); | 23 IBusControllerBase(); |
24 virtual ~IBusControllerBase(); | 24 virtual ~IBusControllerBase(); |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 // should update this variable when needed. | 64 // should update this variable when needed. |
65 InputMethodPropertyList current_property_list_; | 65 InputMethodPropertyList current_property_list_; |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(IBusControllerBase); | 67 DISALLOW_COPY_AND_ASSIGN(IBusControllerBase); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace input_method | 70 } // namespace input_method |
71 } // namespace chromeos | 71 } // namespace chromeos |
72 | 72 |
73 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_BASE_H_ | 73 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_BASE_H_ |
OLD | NEW |