| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chromeos/ime/ibus_bridge.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 #include "base/memory/singleton.h" | |
| 9 | |
| 10 namespace chromeos { | |
| 11 | |
| 12 IBusBridge::IBusBridge() | |
| 13 : input_context_handler_(NULL), | |
| 14 engine_handler_(NULL), | |
| 15 candidate_window_handler_(NULL), | |
| 16 panel_handler_(NULL) { | |
| 17 } | |
| 18 | |
| 19 // static | |
| 20 IBusBridge* IBusBridge::GetInstance() { | |
| 21 return Singleton<IBusBridge>::get(); | |
| 22 } | |
| 23 | |
| 24 } // namespace chromeos | |
| OLD | NEW |