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

Side by Side Diff: chrome/browser/chromeos/login/auth/online_attempt_unittest.cc

Issue 290513003: Move UserContext to its own file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 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 | Annotate | Revision Log
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 <string> 5 #include <string>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "chrome/browser/chromeos/login/auth/auth_attempt_state.h" 10 #include "chrome/browser/chromeos/login/auth/auth_attempt_state.h"
11 #include "chrome/browser/chromeos/login/auth/mock_auth_attempt_state_resolver.h" 11 #include "chrome/browser/chromeos/login/auth/mock_auth_attempt_state_resolver.h"
12 #include "chrome/browser/chromeos/login/auth/mock_url_fetchers.h" 12 #include "chrome/browser/chromeos/login/auth/mock_url_fetchers.h"
13 #include "chrome/browser/chromeos/login/auth/online_attempt.h" 13 #include "chrome/browser/chromeos/login/auth/online_attempt.h"
14 #include "chrome/browser/chromeos/login/auth/test_attempt_state.h" 14 #include "chrome/browser/chromeos/login/auth/test_attempt_state.h"
15 #include "chrome/browser/chromeos/login/users/user.h" 15 #include "chrome/browser/chromeos/login/auth/user_context.h"
16 #include "chrome/test/base/testing_profile.h" 16 #include "chrome/test/base/testing_profile.h"
17 #include "content/public/browser/browser_thread.h" 17 #include "content/public/browser/browser_thread.h"
18 #include "content/public/test/test_browser_thread_bundle.h" 18 #include "content/public/test/test_browser_thread_bundle.h"
19 #include "google_apis/gaia/gaia_auth_consumer.h" 19 #include "google_apis/gaia/gaia_auth_consumer.h"
20 #include "google_apis/gaia/mock_url_fetcher_factory.h" 20 #include "google_apis/gaia/mock_url_fetcher_factory.h"
21 #include "testing/gmock/include/gmock/gmock.h" 21 #include "testing/gmock/include/gmock/gmock.h"
22 #include "testing/gtest/include/gtest/gtest.h" 22 #include "testing/gtest/include/gtest/gtest.h"
23 #include "url/gurl.h" 23 #include "url/gurl.h"
24 24
25 using ::testing::AnyNumber; 25 using ::testing::AnyNumber;
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 attempt_->weak_factory_.GetWeakPtr(), 217 attempt_->weak_factory_.GetWeakPtr(),
218 error)); 218 error));
219 219
220 // Force UI thread to finish tasks so I can verify |state_|. 220 // Force UI thread to finish tasks so I can verify |state_|.
221 base::RunLoop().RunUntilIdle(); 221 base::RunLoop().RunUntilIdle();
222 EXPECT_TRUE(GoogleServiceAuthError::AuthErrorNone() == 222 EXPECT_TRUE(GoogleServiceAuthError::AuthErrorNone() ==
223 state_.online_outcome().error()); 223 state_.online_outcome().error());
224 } 224 }
225 225
226 } // namespace chromeos 226 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698