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

Unified Diff: chrome/browser/chromeos/arc/arc_auth_service.cc

Issue 1754803003: Implement Stub for policy bridge to ARC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ordering and ordinal numbers in .mojom files, nits adressed Created 4 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 | « chrome/browser/chromeos/arc/arc_auth_service.h ('k') | chrome/browser/chromeos/arc/arc_policy_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/arc/arc_auth_service.cc
diff --git a/chrome/browser/chromeos/arc/arc_auth_service.cc b/chrome/browser/chromeos/arc/arc_auth_service.cc
index 86ae29057597b6831893ea437129d54afd9ed4f8..cf6d2666fa1c233ba182090559e2311eaf1ef326 100644
--- a/chrome/browser/chromeos/arc/arc_auth_service.cc
+++ b/chrome/browser/chromeos/arc/arc_auth_service.cc
@@ -137,6 +137,13 @@ void ArcAuthService::OnSignInFailed(arc::ArcSignInFailureReason reason) {
ShutdownBridgeAndCloseUI();
}
+void ArcAuthService::GetIsAccountManaged(
+ const GetIsAccountManagedCallback& callback) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ // Stub for testing. TODO(phweiss): Implement correct behaviour.
+ callback.Run(true);
+}
+
void ArcAuthService::SetState(State state) {
if (state_ == state)
return;
« no previous file with comments | « chrome/browser/chromeos/arc/arc_auth_service.h ('k') | chrome/browser/chromeos/arc/arc_policy_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698