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

Unified Diff: chromeos/dbus/dbus_thread_manager.h

Issue 10533006: Support the ModemManager1 interfaces for SMS messages (Closed) Base URL: http://git.chromium.org/git/chromium/src@master
Patch Set: Only deliver messages after call to RequestUpdate Created 8 years, 6 months 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/dbus/dbus_thread_manager.h
diff --git a/chromeos/dbus/dbus_thread_manager.h b/chromeos/dbus/dbus_thread_manager.h
index 8e6991b70191987ec2f329b441088bbf1b409f06..3a6952869b21d7e41c776191e173614d1aa1ec13 100644
--- a/chromeos/dbus/dbus_thread_manager.h
+++ b/chromeos/dbus/dbus_thread_manager.h
@@ -43,8 +43,10 @@ class IBusClient;
class IBusInputContextClient;
class ImageBurnerClient;
class IntrospectableClient;
+class ModemMessagingClient;
class PowerManagerClient;
class SessionManagerClient;
+class SMSClient;
class SpeechSynthesizerClient;
class UpdateEngineClient;
@@ -189,6 +191,11 @@ class CHROMEOS_EXPORT DBusThreadManager {
// down.
virtual IntrospectableClient* GetIntrospectableClient() = 0;
+ // Returns the Modem Messaging client, owned by DBusThreadManager.
+ // Do not cache this pointer and use it after DBusThreadManager is shut
+ // down.
+ virtual ModemMessagingClient* GetModemMessagingClient() = 0;
+
// Returns the power manager client, owned by DBusThreadManager.
// See also comments at session_manager_client().
virtual PowerManagerClient* GetPowerManagerClient() = 0;
@@ -198,6 +205,11 @@ class CHROMEOS_EXPORT DBusThreadManager {
// down.
virtual SessionManagerClient* GetSessionManagerClient() = 0;
+ // Returns the SMS client, owned by DBusThreadManager.
+ // Do not cache this pointer and use it after DBusThreadManager is shut
+ // down.
+ virtual SMSClient* GetSMSClient() = 0;
+
// Returns the speech synthesizer client, owned by DBusThreadManager.
// Do not cache this pointer and use it after DBusThreadManager is shut
// down.

Powered by Google App Engine
This is Rietveld 408576698