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

Unified Diff: chromeos/dbus/dbus_client_bundle.h

Issue 996013003: privetd: Expose dbus API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mysterious build failure Created 5 years, 9 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
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/dbus_client_bundle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/dbus_client_bundle.h
diff --git a/chromeos/dbus/dbus_client_bundle.h b/chromeos/dbus/dbus_client_bundle.h
index dd9b5263c700d2e288a1a7a6d15abc66082e5509..e7aa8b6e18f01e089781b641bc9eccb43408125d 100644
--- a/chromeos/dbus/dbus_client_bundle.h
+++ b/chromeos/dbus/dbus_client_bundle.h
@@ -49,6 +49,7 @@ class NfcTagClient;
class NfcRecordClient;
class PeerDaemonManagerClient;
class PermissionBrokerClient;
+class PrivetDaemonManagerClient;
class SystemClockClient;
class PowerManagerClient;
class SessionManagerClient;
@@ -89,6 +90,7 @@ class CHROMEOS_EXPORT DBusClientBundle {
LEADERSHIP_DAEMON = 1 << 20,
METRONOME = 1 << 21,
AP_MANAGER = 1 << 22,
+ PRIVET_DAEMON = 1 << 23,
};
explicit DBusClientBundle(DBusClientTypeMask unstub_client_mask);
@@ -251,6 +253,10 @@ class CHROMEOS_EXPORT DBusClientBundle {
return permission_broker_client_.get();
}
+ PrivetDaemonManagerClient* privet_daemon_manager_client() {
+ return privet_daemon_manager_client_.get();
+ }
+
SystemClockClient* system_clock_client() {
return system_clock_client_.get();
}
@@ -300,6 +306,7 @@ class CHROMEOS_EXPORT DBusClientBundle {
scoped_ptr<LorgnetteManagerClient> lorgnette_manager_client_;
scoped_ptr<MetronomeClient> metronome_client_;
scoped_ptr<PeerDaemonManagerClient> peer_daemon_manager_client_;
+ scoped_ptr<PrivetDaemonManagerClient> privet_daemon_manager_client_;
scoped_ptr<ShillDeviceClient> shill_device_client_;
scoped_ptr<ShillIPConfigClient> shill_ipconfig_client_;
scoped_ptr<ShillManagerClient> shill_manager_client_;
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/dbus_client_bundle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698