Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: chromeos/ime/ibus_daemon_controller.cc

Issue 67313006: Delete IBusClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/ime/ibus_daemon_controller.cc
diff --git a/chromeos/ime/ibus_daemon_controller.cc b/chromeos/ime/ibus_daemon_controller.cc
index 01cd5835ade539d9e03134bd9857910a519a7c82..f6ec59e75dfc9711d6303b105af7784daeb0fb2b 100644
--- a/chromeos/ime/ibus_daemon_controller.cc
+++ b/chromeos/ime/ibus_daemon_controller.cc
@@ -74,14 +74,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;

Powered by Google App Engine
This is Rietveld 408576698