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

Unified Diff: chromeos/dbus/dbus_client_bundle.h

Issue 935933002: Adds metronome time sync dbus client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds a command line flag to use a timer-based fake implementation Created 5 years, 10 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_switches.cc ('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 7397adaea3a4038fafcc98f7b49ab1c7e85a32ab..48d000cfca5222752c4f730a1832cb636fb7e003 100644
--- a/chromeos/dbus/dbus_client_bundle.h
+++ b/chromeos/dbus/dbus_client_bundle.h
@@ -30,6 +30,7 @@ class DebugDaemonClient;
class EasyUnlockClient;
class LeadershipDaemonManagerClient;
class LorgnetteManagerClient;
+class MetronomeClient;
class ShillDeviceClient;
class ShillIPConfigClient;
class ShillManagerClient;
@@ -85,6 +86,7 @@ class CHROMEOS_EXPORT DBusClientBundle {
UPDATE_ENGINE = 1 << 18,
PEER_DAEMON = 1 << 19,
LEADERSHIP_DAEMON = 1 << 20,
+ METRONOME = 1 << 21,
};
explicit DBusClientBundle(DBusClientTypeMask unstub_client_mask);
@@ -175,6 +177,8 @@ class CHROMEOS_EXPORT DBusClientBundle {
return lorgnette_manager_client_.get();
}
+ MetronomeClient* metronome_client() { return metronome_client_.get(); }
+
ShillDeviceClient* shill_device_client() {
return shill_device_client_.get();
}
@@ -289,6 +293,7 @@ class CHROMEOS_EXPORT DBusClientBundle {
scoped_ptr<EasyUnlockClient> easy_unlock_client_;
scoped_ptr<LeadershipDaemonManagerClient> leadership_daemon_manager_client_;
scoped_ptr<LorgnetteManagerClient> lorgnette_manager_client_;
+ scoped_ptr<MetronomeClient> metronome_client_;
scoped_ptr<PeerDaemonManagerClient> peer_daemon_manager_client_;
scoped_ptr<ShillDeviceClient> shill_device_client_;
scoped_ptr<ShillIPConfigClient> shill_ipconfig_client_;
« no previous file with comments | « chromeos/chromeos_switches.cc ('k') | chromeos/dbus/dbus_client_bundle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698