| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_SIGNIN_FAKE_AUTH_STATUS_PROVIDER_H_ | |
| 6 #define CHROME_BROWSER_SIGNIN_FAKE_AUTH_STATUS_PROVIDER_H_ | |
| 7 | |
| 8 #include "components/signin/core/browser/signin_error_controller.h" | |
| 9 | |
| 10 // Helper class that reports auth errors to SigninErrorController. Automatically | |
| 11 // registers and de-registers itself as an AuthStatusProvider in the | |
| 12 // constructor and destructor. | |
| 13 class FakeAuthStatusProvider | |
| 14 : public SigninErrorController::AuthStatusProvider { | |
| 15 public: | |
| 16 explicit FakeAuthStatusProvider(SigninErrorController* error); | |
| 17 virtual ~FakeAuthStatusProvider(); | |
| 18 | |
| 19 // Sets the auth error that this provider reports to SigninErrorController. | |
| 20 // Also notifies SigninErrorController via AuthStatusChanged(). | |
| 21 void SetAuthError(const std::string& account_id, | |
| 22 const GoogleServiceAuthError& error); | |
| 23 | |
| 24 void set_error_without_status_change(const GoogleServiceAuthError& error) { | |
| 25 auth_error_ = error; | |
| 26 } | |
| 27 | |
| 28 // AuthStatusProvider implementation. | |
| 29 virtual std::string GetAccountId() const OVERRIDE; | |
| 30 virtual GoogleServiceAuthError GetAuthStatus() const OVERRIDE; | |
| 31 | |
| 32 private: | |
| 33 SigninErrorController* error_provider_; | |
| 34 std::string account_id_; | |
| 35 GoogleServiceAuthError auth_error_; | |
| 36 }; | |
| 37 | |
| 38 #endif // CHROME_BROWSER_SIGNIN_FAKE_AUTH_STATUS_PROVIDER_H_ | |
| OLD | NEW |