diff options
Diffstat (limited to 'chrome/browser/cookies_tree_model_unittest.cc')
-rw-r--r-- | chrome/browser/cookies_tree_model_unittest.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/cookies_tree_model_unittest.cc b/chrome/browser/cookies_tree_model_unittest.cc index 75844d0..55888c1 100644 --- a/chrome/browser/cookies_tree_model_unittest.cc +++ b/chrome/browser/cookies_tree_model_unittest.cc @@ -47,8 +47,8 @@ class StubSettingsObserver : public NotificationObserver { class CookiesTreeModelTest : public testing::Test { public: - CookiesTreeModelTest() : ui_thread_(ChromeThread::UI, &message_loop_), - io_thread_(ChromeThread::IO, &message_loop_) { + CookiesTreeModelTest() : ui_thread_(BrowserThread::UI, &message_loop_), + io_thread_(BrowserThread::IO, &message_loop_) { } virtual ~CookiesTreeModelTest() { @@ -238,8 +238,8 @@ class CookiesTreeModelTest : public testing::Test { } protected: MessageLoop message_loop_; - ChromeThread ui_thread_; - ChromeThread io_thread_; + BrowserThread ui_thread_; + BrowserThread io_thread_; scoped_ptr<TestingProfile> profile_; scoped_refptr<MockBrowsingDataDatabaseHelper> |