summaryrefslogtreecommitdiffstats
path: root/chromeos/ime
diff options
context:
space:
mode:
authorkomatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-13 05:51:29 +0000
committerkomatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-13 05:51:29 +0000
commitabb2b9f0cb653e30cb43cdc63b527bdaddbedc58 (patch)
tree9edef0945266ce9172fd79f745178e5d06f94ee3 /chromeos/ime
parent321e8602f4adc6e8e2325c375b8cea591d0c87d5 (diff)
downloadchromium_src-abb2b9f0cb653e30cb43cdc63b527bdaddbedc58.zip
chromium_src-abb2b9f0cb653e30cb43cdc63b527bdaddbedc58.tar.gz
chromium_src-abb2b9f0cb653e30cb43cdc63b527bdaddbedc58.tar.bz2
Delete IBusClient.
IBusClient is no longer necessary. This patch cleans up the code. BUG=317500 Review URL: https://codereview.chromium.org/67313006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/ime')
-rw-r--r--chromeos/ime/ibus_daemon_controller.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/chromeos/ime/ibus_daemon_controller.cc b/chromeos/ime/ibus_daemon_controller.cc
index 7febb2b..0ff2eb1 100644
--- a/chromeos/ime/ibus_daemon_controller.cc
+++ b/chromeos/ime/ibus_daemon_controller.cc
@@ -39,14 +39,6 @@ class IBusDaemonControllerDaemonlessImpl : public IBusDaemonController {
virtual bool Start() OVERRIDE {
if (is_started_)
return false;
- // IBusBus should be initialized but it is okay to pass "dummy address" as
- // the bus address because the actual dbus implementation is stub if the
- // Chrome OS is working on Linux desktop. This path is not used in
- // production at this moment, only for Chrome OS on Linux Desktop.
- // TODO(nona): Remove InitIBusBus oncer all legacy ime is migrated to IME
- // extension API.
- DBusThreadManager::Get()->InitIBusBus("dummy address",
- base::Bind(&base::DoNothing));
is_started_ = true;
FOR_EACH_OBSERVER(Observer, observers_, OnConnected());
return true;