| 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 #include "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "components/signin/core/browser/test_signin_client.h" | 6 #include "components/signin/core/browser/test_signin_client.h" |
| 7 #include "components/signin/core/browser/webdata/token_service_table.h" | 7 #include "components/signin/core/browser/webdata/token_service_table.h" |
| 8 #include "components/webdata/common/web_data_service_base.h" | 8 #include "components/webdata/common/web_data_service_base.h" |
| 9 #include "components/webdata/common/web_database_service.h" | 9 #include "components/webdata/common/web_database_service.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 return signin_host_id_ != kInvalidProcessId; | 127 return signin_host_id_ != kInvalidProcessId; |
| 128 } | 128 } |
| 129 | 129 |
| 130 bool TestSigninClient::IsFirstRun() const { | 130 bool TestSigninClient::IsFirstRun() const { |
| 131 return false; | 131 return false; |
| 132 } | 132 } |
| 133 | 133 |
| 134 base::Time TestSigninClient::GetInstallDate() { | 134 base::Time TestSigninClient::GetInstallDate() { |
| 135 return base::Time::Now(); | 135 return base::Time::Now(); |
| 136 } | 136 } |
| 137 |
| 138 void TestSigninClient::OnErrorChanged() {} |
| OLD | NEW |