| Index: chrome/browser/password_manager/password_store_x_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| index a550abd51890e67d87bd4045f9e3546b840a1a72..ff4317d4a97ec281e988a6f4100bff5915626807 100644
|
| --- a/chrome/browser/password_manager/password_store_x_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_x_unittest.cc
|
| @@ -28,6 +28,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"
|
|
|
| @@ -313,8 +314,9 @@ class PasswordStoreXTest : public testing::TestWithParam<BackendType> {
|
| }
|
|
|
| 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_;
|
|
|