Chromium Code Reviews| Index: components/signin/core/browser/signin_client.h |
| diff --git a/components/signin/core/browser/signin_client.h b/components/signin/core/browser/signin_client.h |
| index 200c2dcff4bcbd76f3051a13165c2fdc2faa7a71..99b1120ef82774d568b525b2bdb085bdedfe7a0b 100644 |
| --- a/components/signin/core/browser/signin_client.h |
| +++ b/components/signin/core/browser/signin_client.h |
| @@ -7,6 +7,7 @@ |
| #include "base/callback.h" |
| #include "base/callback_list.h" |
| +#include "base/time/time.h" |
| #include "components/keyed_service/core/keyed_service.h" |
| #include "components/signin/core/browser/webdata/token_web_data.h" |
| @@ -85,6 +86,9 @@ class SigninClient : public KeyedService { |
| virtual bool IsSigninProcess(int host_id) const = 0; |
| virtual bool HasSigninProcess() const = 0; |
| + virtual bool IsFirstRun() const = 0; |
| + virtual base::Time GetInstallDate() = 0; |
| + |
|
Alexei Svitkine (slow)
2014/08/12 19:45:16
Nit: Remove empty line.
Mike Lerman
2014/08/13 15:32:19
Done.
|
| #if defined(OS_IOS) |
| // TODO(msarda): http://crbug.com/358544 Remove this iOS specific code from |