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

Unified Diff: chrome/browser/net/gaia/token_service_unittest.cc

Issue 8438034: Moving the SignalingTask class to base/test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Addressed comments Created 9 years, 1 month 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/net/gaia/token_service_unittest.cc
===================================================================
--- chrome/browser/net/gaia/token_service_unittest.cc (revision 107928)
+++ chrome/browser/net/gaia/token_service_unittest.cc (working copy)
@@ -8,6 +8,7 @@
#include "base/command_line.h"
#include "base/synchronization/waitable_event.h"
+#include "base/test/signaling_task.h"
#include "chrome/browser/password_manager/encryptor.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/chrome_switches.h"
@@ -94,7 +95,7 @@
// operations should be complete.
base::WaitableEvent done(false, false);
BrowserThread::PostTask(
- BrowserThread::DB, FROM_HERE, new SignalingTask(&done));
+ BrowserThread::DB, FROM_HERE, new base::SignalingTask(&done));
done.Wait();
// Notifications should be returned from the DB thread onto the UI thread.
« no previous file with comments | « chrome/browser/net/gaia/token_service_unittest.h ('k') | chrome/browser/password_manager/password_store_default_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698