| Index: chrome/browser/ui/app_list/speech_auth_helper_unittest.cc
|
| diff --git a/chrome/browser/ui/app_list/speech_auth_helper_unittest.cc b/chrome/browser/ui/app_list/speech_auth_helper_unittest.cc
|
| index 7302af1529f328dcfe0ee1da4c3f7e4342ba98b8..902f9b5edbb97c1476d91fc6ba55101e5934ead0 100644
|
| --- a/chrome/browser/ui/app_list/speech_auth_helper_unittest.cc
|
| +++ b/chrome/browser/ui/app_list/speech_auth_helper_unittest.cc
|
| @@ -25,6 +25,7 @@
|
|
|
| namespace app_list {
|
|
|
| +static const char* kTestGaiaId = "gaia_id";
|
| static const char* kTestUser = "test.user@chromium.org.test";
|
| static const char* kScope = "https://www.googleapis.com/auth/webhistory";
|
| static const char* kAccessToken = "fake_access_token";
|
| @@ -53,8 +54,8 @@ class SpeechAuthHelperTest : public testing::Test {
|
| factories);
|
|
|
| // Set up the authenticated user name and ID.
|
| - SigninManagerFactory::GetForProfile(profile_)->SetAuthenticatedUsername(
|
| - kTestUser);
|
| + SigninManagerFactory::GetForProfile(profile_)->SetAuthenticatedAccountInfo(
|
| + kTestGaiaId, kTestUser);
|
| }
|
|
|
| protected:
|
|
|