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 net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; | 52 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; |
52 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE; | 53 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE; |
53 | 54 |
54 // Returns a string describing the chrome version environment. Version format: | 55 // Returns a string describing the chrome version environment. Version format: |
55 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> | 56 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> |
56 // If version information is unavailable, returns "invalid." | 57 // If version information is unavailable, returns "invalid." |
57 virtual std::string GetProductVersion() OVERRIDE; | 58 virtual std::string GetProductVersion() OVERRIDE; |
58 virtual void SetCookieChangedCallback(const CookieChangedCallback& callback) | 59 virtual void SetCookieChangedCallback(const CookieChangedCallback& callback) |
59 OVERRIDE; | 60 OVERRIDE; |
60 virtual void GoogleSigninSucceeded(const std::string& username, | 61 virtual void GoogleSigninSucceeded(const std::string& username, |
(...skipping 19 matching lines...) Expand all Loading... |
80 // by ID, if there is one. | 81 // by ID, if there is one. |
81 int signin_host_id_; | 82 int signin_host_id_; |
82 | 83 |
83 // The RenderProcessHosts being observed. | 84 // The RenderProcessHosts being observed. |
84 std::set<content::RenderProcessHost*> signin_hosts_observed_; | 85 std::set<content::RenderProcessHost*> signin_hosts_observed_; |
85 | 86 |
86 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); | 87 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); |
87 }; | 88 }; |
88 | 89 |
89 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ | 90 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ |
OLD | NEW |