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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ClearSigninScopedDeviceId() 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; |
| 55 virtual base::Time GetInstallDate() OVERRIDE; |
54 | 56 |
55 // Returns a string describing the chrome version environment. Version format: | 57 // Returns a string describing the chrome version environment. Version format: |
56 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> | 58 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> |
57 // If version information is unavailable, returns "invalid." | 59 // If version information is unavailable, returns "invalid." |
58 virtual std::string GetProductVersion() OVERRIDE; | 60 virtual std::string GetProductVersion() OVERRIDE; |
59 virtual scoped_ptr<CookieChangedCallbackList::Subscription> | 61 virtual scoped_ptr<CookieChangedCallbackList::Subscription> |
60 AddCookieChangedCallback(const CookieChangedCallback& callback) OVERRIDE; | 62 AddCookieChangedCallback(const CookieChangedCallback& callback) OVERRIDE; |
61 virtual void GoogleSigninSucceeded(const std::string& username, | 63 virtual void GoogleSigninSucceeded(const std::string& username, |
62 const std::string& password) OVERRIDE; | 64 const std::string& password) OVERRIDE; |
63 | 65 |
(...skipping 17 matching lines...) Expand all Loading... |
81 // by ID, if there is one. | 83 // by ID, if there is one. |
82 int signin_host_id_; | 84 int signin_host_id_; |
83 | 85 |
84 // The RenderProcessHosts being observed. | 86 // The RenderProcessHosts being observed. |
85 std::set<content::RenderProcessHost*> signin_hosts_observed_; | 87 std::set<content::RenderProcessHost*> signin_hosts_observed_; |
86 | 88 |
87 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); | 89 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); |
88 }; | 90 }; |
89 | 91 |
90 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ | 92 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ |
OLD | NEW |