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..d5ad38c747a6ec6123c5f8a185a7573009726d0b 100644 |
--- a/components/signin/core/browser/test_signin_client.h |
+++ b/components/signin/core/browser/test_signin_client.h |
@@ -59,6 +59,12 @@ class TestSigninClient : public SigninClient { |
ios::FakeProfileOAuth2TokenServiceIOSProvider* GetIOSProviderAsFake(); |
#endif |
+ // SigninClient overrides: |
+ virtual void SetSigninProcess(int host_id) OVERRIDE; |
+ 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 +72,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_; |