| Index: chrome/browser/password_manager/password_store_default_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_default_unittest.cc b/chrome/browser/password_manager/password_store_default_unittest.cc
|
| index bb89510ecd59cc304d348a021d1aa0d47f83fc9b..c5b71c3bafd1f20fb241ee0d91880c9a9f0b2cec 100644
|
| --- a/chrome/browser/password_manager/password_store_default_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_default_unittest.cc
|
| @@ -23,6 +23,7 @@
|
| #include "content/public/browser/notification_registrar.h"
|
| #include "content/public/browser/notification_source.h"
|
| #include "content/test/notification_observer_mock.h"
|
| +#include "content/test/test_browser_thread.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -127,8 +128,9 @@ class PasswordStoreDefaultTest : public testing::Test {
|
| }
|
|
|
| MessageLoopForUI message_loop_;
|
| - BrowserThread ui_thread_;
|
| - BrowserThread db_thread_; // PasswordStore, WDS schedule work on this thread.
|
| + content::TestBrowserThread ui_thread_;
|
| + // PasswordStore, WDS schedule work on this thread.
|
| + content::TestBrowserThread db_thread_;
|
|
|
| scoped_ptr<LoginDatabase> login_db_;
|
| scoped_ptr<TestingProfile> profile_;
|
|
|