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

Unified Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 2433363004: Chromad: added AD Join ui, authpolicy_client (Closed)
Patch Set: nit Created 4 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
Index: chromeos/dbus/dbus_thread_manager.cc
diff --git a/chromeos/dbus/dbus_thread_manager.cc b/chromeos/dbus/dbus_thread_manager.cc
index 1a9e7c642b6bfc59637b1de4c3bb0d1900e72579..82eb4a33c9c1954097dd42fdf9d5f77a1fb9b5a5 100644
--- a/chromeos/dbus/dbus_thread_manager.cc
+++ b/chromeos/dbus/dbus_thread_manager.cc
@@ -12,6 +12,7 @@
#include "base/threading/thread.h"
#include "chromeos/chromeos_switches.h"
#include "chromeos/dbus/arc_obb_mounter_client.h"
+#include "chromeos/dbus/auth_policy_client.h"
#include "chromeos/dbus/cras_audio_client.h"
#include "chromeos/dbus/cros_disks_client.h"
#include "chromeos/dbus/cryptohome_client.h"
@@ -109,6 +110,11 @@ ArcObbMounterClient* DBusThreadManager::GetArcObbMounterClient() {
: nullptr;
}
+AuthPolicyClient* DBusThreadManager::GetAuthPolicyClient() {
+ return clients_browser_ ? clients_browser_->auth_policy_client_.get()
+ : nullptr;
+}
+
CrasAudioClient* DBusThreadManager::GetCrasAudioClient() {
return clients_common_->cras_audio_client_.get();
}

Powered by Google App Engine
This is Rietveld 408576698