diff options
Diffstat (limited to 'chromeos/dbus/dbus_thread_manager.h')
-rw-r--r-- | chromeos/dbus/dbus_thread_manager.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/chromeos/dbus/dbus_thread_manager.h b/chromeos/dbus/dbus_thread_manager.h index 5e96ef2..733d561 100644 --- a/chromeos/dbus/dbus_thread_manager.h +++ b/chromeos/dbus/dbus_thread_manager.h @@ -17,6 +17,7 @@ class Thread; namespace dbus { class Bus; +class ObjectPath; }; namespace chromeos { @@ -40,6 +41,8 @@ class FlimflamProfileClient; class FlimflamServiceClient; class GsmSMSClient; class IBusClient; +class IBusEngineService; +class IBusEngineFactoryService; class IBusInputContextClient; class ImageBurnerClient; class IntrospectableClient; @@ -232,6 +235,15 @@ class CHROMEOS_EXPORT DBusThreadManager { // cache this pointer and use it after DBusThreadManager is shut down. virtual IBusInputContextClient* GetIBusInputContextClient() = 0; + // Returns the ibus engine factory service, owned by DBusThreadManager. Do not + // cache this pointer and use it after DBusThreadManager is shut down. + virtual IBusEngineFactoryService* GetIBusEngineFactoryService() = 0; + + // Returns the ibus engine service, owned by DBusThreadManager. Do not cache + // this pointer and use it after DBusThreadManager is shut down. + virtual IBusEngineService* GetIBusEngineService( + const dbus::ObjectPath& object_path) = 0; + virtual ~DBusThreadManager(); protected: |