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

Unified Diff: chrome/browser/notifications/desktop_notification_service_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
Index: chrome/browser/notifications/desktop_notification_service_unittest.cc
diff --git a/chrome/browser/notifications/desktop_notification_service_unittest.cc b/chrome/browser/notifications/desktop_notification_service_unittest.cc
index 389b3d224bf64fb00e1644ba0d110c5cc73ccf33..8c74178fab152b237e1b2f4d8b849979368d9ad1 100644
--- a/chrome/browser/notifications/desktop_notification_service_unittest.cc
+++ b/chrome/browser/notifications/desktop_notification_service_unittest.cc
@@ -28,9 +28,8 @@ class ThreadProxy : public base::RefCountedThreadSafe<ThreadProxy> {
ui_event_(false, false),
permission_(WebKit::WebNotificationPresenter::PermissionAllowed) {
// The current message loop was already initalized by the test superclass.
- ui_thread_.reset(
- new content::TestBrowserThread(BrowserThread::UI,
- MessageLoop::current()));
+ ui_thread_.reset(new content::TestBrowserThread(
+ BrowserThread::UI, base::MessageLoop::current()));
// Create IO thread, start its message loop.
io_thread_.reset(new content::TestBrowserThread(BrowserThread::IO));

Powered by Google App Engine
This is Rietveld 408576698