Chromium Code Reviews| Index: components/signin/core/browser/test_signin_client.h |
| diff --git a/components/signin/core/browser/test_signin_client.h b/components/signin/core/browser/test_signin_client.h |
| index 0f66ef88f562b02cabf659e5477766af1f036de1..713d4877e83fff722c3a2e62c1dfb0c1ab24e66a 100644 |
| --- a/components/signin/core/browser/test_signin_client.h |
| +++ b/components/signin/core/browser/test_signin_client.h |
| @@ -59,6 +59,11 @@ class TestSigninClient : public SigninClient { |
| ios::FakeProfileOAuth2TokenServiceIOSProvider* GetIOSProviderAsFake(); |
| #endif |
| + virtual void SetSigninProcess(int host_id) OVERRIDE; |
|
Roger Tawa OOO till Jul 10th
2014/05/22 23:04:38
nit comment: // SigninClient overrides:
Mike Lerman
2014/05/23 12:40:58
Done.
|
| + virtual void ClearSigninProcess() OVERRIDE; |
| + virtual bool IsSigninProcess(int host_id) const OVERRIDE; |
| + virtual bool HasSigninProcess() const OVERRIDE; |
| + |
| private: |
| // Loads the token database. |
| void LoadDatabase(); |
| @@ -66,6 +71,7 @@ class TestSigninClient : public SigninClient { |
| base::ScopedTempDir temp_dir_; |
| scoped_refptr<net::TestURLRequestContextGetter> request_context_; |
| scoped_refptr<TokenWebData> database_; |
| + int signin_host_id_; |
| #if defined(OS_IOS) |
| scoped_ptr<ios::FakeProfileOAuth2TokenServiceIOSProvider> iosProvider_; |