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

Unified Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 67313006: Delete IBusClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove obsolete test. 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
« no previous file with comments | « chromeos/dbus/dbus_thread_manager.h ('k') | chromeos/dbus/fake_dbus_thread_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/dbus_thread_manager.cc
diff --git a/chromeos/dbus/dbus_thread_manager.cc b/chromeos/dbus/dbus_thread_manager.cc
index 18843dc4dff68b9c6f4871a67b8cc92ef68799cb..66a12aff7a786dcc65ecde1d1c1c75653f5eda45 100644
--- a/chromeos/dbus/dbus_thread_manager.cc
+++ b/chromeos/dbus/dbus_thread_manager.cc
@@ -25,7 +25,6 @@
#include "chromeos/dbus/debug_daemon_client.h"
#include "chromeos/dbus/fake_dbus_thread_manager.h"
#include "chromeos/dbus/gsm_sms_client.h"
-#include "chromeos/dbus/ibus/ibus_client.h"
#include "chromeos/dbus/image_burner_client.h"
#include "chromeos/dbus/introspectable_client.h"
#include "chromeos/dbus/modem_messaging_client.h"
@@ -98,12 +97,6 @@ class DBusThreadManagerImpl : public DBusThreadManager {
observers_.RemoveObserver(observer);
}
- virtual void InitIBusBus(
- const std::string &ibus_address,
- const base::Closure& on_disconnected_callback) OVERRIDE {
- ibus_client_.reset(IBusClient::Create());
- }
-
virtual dbus::Bus* GetSystemBus() OVERRIDE {
return system_bus_.get();
}
@@ -230,10 +223,6 @@ class DBusThreadManagerImpl : public DBusThreadManager {
return update_engine_client_.get();
}
- virtual IBusClient* GetIBusClient() OVERRIDE {
- return ibus_client_.get();
- }
-
private:
// Constructs all clients -- stub or real implementation according to
// |client_type| and |client_type_override| -- and stores them in the
@@ -335,7 +324,6 @@ class DBusThreadManagerImpl : public DBusThreadManager {
scoped_ptr<SessionManagerClient> session_manager_client_;
scoped_ptr<SMSClient> sms_client_;
scoped_ptr<UpdateEngineClient> update_engine_client_;
- scoped_ptr<IBusClient> ibus_client_;
scoped_ptr<PowerPolicyController> power_policy_controller_;
};
« no previous file with comments | « chromeos/dbus/dbus_thread_manager.h ('k') | chromeos/dbus/fake_dbus_thread_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698