Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Side by Side Diff: chrome/browser/ui/app_list/speech_auth_helper_unittest.cc

Issue 1245103005: Componentize more signin code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "chrome/browser/ui/app_list/speech_auth_helper.h" 5 #include "chrome/browser/ui/app_list/speech_auth_helper.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "base/test/simple_test_clock.h" 11 #include "base/test/simple_test_clock.h"
12 #include "chrome/browser/prefs/pref_service_syncable.h" 12 #include "chrome/browser/prefs/pref_service_syncable.h"
13 #include "chrome/browser/signin/fake_profile_oauth2_token_service.h"
14 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" 13 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h"
15 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 14 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
16 #include "chrome/browser/signin/signin_manager_factory.h" 15 #include "chrome/browser/signin/signin_manager_factory.h"
17 #include "chrome/test/base/testing_browser_process.h" 16 #include "chrome/test/base/testing_browser_process.h"
18 #include "chrome/test/base/testing_profile.h" 17 #include "chrome/test/base/testing_profile.h"
19 #include "chrome/test/base/testing_profile_manager.h" 18 #include "chrome/test/base/testing_profile_manager.h"
19 #include "components/signin/core/browser/fake_profile_oauth2_token_service.h"
20 #include "components/signin/core/browser/signin_manager.h" 20 #include "components/signin/core/browser/signin_manager.h"
21 #include "components/signin/core/browser/signin_manager_base.h" 21 #include "components/signin/core/browser/signin_manager_base.h"
22 #include "content/public/test/test_browser_thread_bundle.h" 22 #include "content/public/test/test_browser_thread_bundle.h"
23 #include "google_apis/gaia/google_service_auth_error.h" 23 #include "google_apis/gaia/google_service_auth_error.h"
24 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
25 25
26 namespace app_list { 26 namespace app_list {
27 27
28 static const char* kTestGaiaId = "gaia_id"; 28 static const char* kTestGaiaId = "gaia_id";
29 static const char* kTestUser = "test.user@chromium.org.test"; 29 static const char* kTestUser = "test.user@chromium.org.test";
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 OAuth2TokenService::ScopeSet scopes; 114 OAuth2TokenService::ScopeSet scopes;
115 scopes.insert(kScope); 115 scopes.insert(kScope);
116 GetFakeProfileOAuth2TokenService()->IssueErrorForScope( 116 GetFakeProfileOAuth2TokenService()->IssueErrorForScope(
117 scopes, GoogleServiceAuthError(GoogleServiceAuthError::SERVICE_ERROR)); 117 scopes, GoogleServiceAuthError(GoogleServiceAuthError::SERVICE_ERROR));
118 118
119 EXPECT_TRUE(helper.GetToken().empty()); 119 EXPECT_TRUE(helper.GetToken().empty());
120 EXPECT_EQ(kScope, helper.GetScope()); 120 EXPECT_EQ(kScope, helper.GetScope());
121 } 121 }
122 122
123 } // namespace app_list 123 } // namespace app_list
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698