diff options
Diffstat (limited to 'chrome/browser/notifications/notifications_prefs_cache_unittest.cc')
-rw-r--r-- | chrome/browser/notifications/notifications_prefs_cache_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/notifications/notifications_prefs_cache_unittest.cc b/chrome/browser/notifications/notifications_prefs_cache_unittest.cc index 0cbea9e..ba6e073 100644 --- a/chrome/browser/notifications/notifications_prefs_cache_unittest.cc +++ b/chrome/browser/notifications/notifications_prefs_cache_unittest.cc @@ -18,7 +18,7 @@ TEST(NotificationsPrefsCacheTest, CanCreate) { { MessageLoop loop; - ChromeThread ui_thread(ChromeThread::UI, &loop); + BrowserThread ui_thread(BrowserThread::UI, &loop); cache->SetCacheAllowedOrigins(allowed_origins); cache->SetCacheDeniedOrigins(denied_origins); @@ -29,7 +29,7 @@ TEST(NotificationsPrefsCacheTest, CanCreate) { { MessageLoop loop; - ChromeThread io_thread(ChromeThread::IO, &loop); + BrowserThread io_thread(BrowserThread::IO, &loop); cache->CacheAllowedOrigin(GURL("http://allowed2.com")); cache->CacheDeniedOrigin(GURL("http://denied2.com")); |