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

Unified Diff: chrome/browser/chromeos/login/login_utils_browsertest.cc

Issue 10332170: Fixed thread initialization order in login_utils_browsertest.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/login_utils_browsertest.cc
diff --git a/chrome/browser/chromeos/login/login_utils_browsertest.cc b/chrome/browser/chromeos/login/login_utils_browsertest.cc
index aee7cdaad9b15c5984a7d472bf8fd3382964fc52..4c8444364a1bbb0cb737cb14097f651f63d808fc 100644
--- a/chrome/browser/chromeos/login/login_utils_browsertest.cc
+++ b/chrome/browser/chromeos/login/login_utils_browsertest.cc
@@ -108,9 +108,9 @@ class LoginUtilsTest : public testing::Test,
static_cast<TestingBrowserProcess*>(g_browser_process)),
local_state_(browser_process_),
ui_thread_(content::BrowserThread::UI, &loop_),
+ db_thread_(content::BrowserThread::DB),
file_thread_(content::BrowserThread::FILE, &loop_),
io_thread_(content::BrowserThread::IO),
- db_thread_(content::BrowserThread::DB),
mock_async_method_caller_(NULL),
connector_(NULL),
cryptohome_(NULL),
@@ -369,9 +369,9 @@ class LoginUtilsTest : public testing::Test,
ScopedTestingLocalState local_state_;
content::TestBrowserThread ui_thread_;
+ content::TestBrowserThread db_thread_;
content::TestBrowserThread file_thread_;
content::TestBrowserThread io_thread_;
- content::TestBrowserThread db_thread_;
scoped_ptr<IOThread> io_thread_state_;
MockDBusThreadManager mock_dbus_thread_manager_;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698