| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ |
| 6 #define CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ | 6 #define CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "components/signin/core/browser/signin_client.h" | 10 #include "components/signin/core/browser/signin_client.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 // content::RenderProcessHostObserver implementation. | 42 // content::RenderProcessHostObserver implementation. |
| 43 virtual void RenderProcessHostDestroyed(content::RenderProcessHost* host) | 43 virtual void RenderProcessHostDestroyed(content::RenderProcessHost* host) |
| 44 OVERRIDE; | 44 OVERRIDE; |
| 45 | 45 |
| 46 // SigninClient implementation. | 46 // SigninClient implementation. |
| 47 virtual PrefService* GetPrefs() OVERRIDE; | 47 virtual PrefService* GetPrefs() OVERRIDE; |
| 48 virtual scoped_refptr<TokenWebData> GetDatabase() OVERRIDE; | 48 virtual scoped_refptr<TokenWebData> GetDatabase() OVERRIDE; |
| 49 virtual bool CanRevokeCredentials() OVERRIDE; | 49 virtual bool CanRevokeCredentials() OVERRIDE; |
| 50 virtual std::string GetSigninScopedDeviceId() OVERRIDE; | 50 virtual std::string GetSigninScopedDeviceId() OVERRIDE; |
| 51 virtual void ClearSigninScopedDeviceId() OVERRIDE; | 51 virtual void ClearSigninClientPrefs() OVERRIDE; |
| 52 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; | 52 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; |
| 53 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE; | 53 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE; |
| 54 virtual bool IsFirstRun() const OVERRIDE; | 54 virtual bool IsFirstRun() const OVERRIDE; |
| 55 virtual base::Time GetInstallDate() OVERRIDE; | 55 virtual base::Time GetInstallDate() OVERRIDE; |
| 56 | 56 |
| 57 // Returns a string describing the chrome version environment. Version format: | 57 // Returns a string describing the chrome version environment. Version format: |
| 58 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> | 58 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> |
| 59 // If version information is unavailable, returns "invalid." | 59 // If version information is unavailable, returns "invalid." |
| 60 virtual std::string GetProductVersion() OVERRIDE; | 60 virtual std::string GetProductVersion() OVERRIDE; |
| 61 virtual scoped_ptr<CookieChangedCallbackList::Subscription> | 61 virtual scoped_ptr<CookieChangedCallbackList::Subscription> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 84 // by ID, if there is one. | 84 // by ID, if there is one. |
| 85 int signin_host_id_; | 85 int signin_host_id_; |
| 86 | 86 |
| 87 // The RenderProcessHosts being observed. | 87 // The RenderProcessHosts being observed. |
| 88 std::set<content::RenderProcessHost*> signin_hosts_observed_; | 88 std::set<content::RenderProcessHost*> signin_hosts_observed_; |
| 89 | 89 |
| 90 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); | 90 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ | 93 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ |
| OLD | NEW |