| 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;
|
|
|