| 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_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/process_util.h" | |
| 12 #include "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
| 13 #include "chrome/browser/chromeos/input_method/ibus_controller_base.h" | 12 #include "chrome/browser/chromeos/input_method/ibus_controller_base.h" |
| 14 #include "chromeos/dbus/ibus/ibus_panel_service.h" | 13 #include "chromeos/dbus/ibus/ibus_panel_service.h" |
| 15 #include "chromeos/ime/ibus_daemon_controller.h" | 14 #include "chromeos/ime/ibus_daemon_controller.h" |
| 16 | 15 |
| 17 namespace ui { | 16 namespace ui { |
| 18 class InputMethodIBus; | 17 class InputMethodIBus; |
| 19 } // namespace ui | 18 } // namespace ui |
| 20 | 19 |
| 21 namespace chromeos { | 20 namespace chromeos { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 // Used for making callbacks for PostTask. | 73 // Used for making callbacks for PostTask. |
| 75 base::WeakPtrFactory<IBusControllerImpl> weak_ptr_factory_; | 74 base::WeakPtrFactory<IBusControllerImpl> weak_ptr_factory_; |
| 76 | 75 |
| 77 DISALLOW_COPY_AND_ASSIGN(IBusControllerImpl); | 76 DISALLOW_COPY_AND_ASSIGN(IBusControllerImpl); |
| 78 }; | 77 }; |
| 79 | 78 |
| 80 } // namespace input_method | 79 } // namespace input_method |
| 81 } // namespace chromeos | 80 } // namespace chromeos |
| 82 | 81 |
| 83 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_IMPL_H_ | 82 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_IBUS_CONTROLLER_IMPL_H_ |
| OLD | NEW |