diff options
Diffstat (limited to 'chrome/browser/sync/profile_sync_test_util.cc')
-rw-r--r-- | chrome/browser/sync/profile_sync_test_util.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/sync/profile_sync_test_util.cc b/chrome/browser/sync/profile_sync_test_util.cc index a533fd4..26c89a4 100644 --- a/chrome/browser/sync/profile_sync_test_util.cc +++ b/chrome/browser/sync/profile_sync_test_util.cc @@ -49,12 +49,12 @@ ThreadNotifier::ThreadNotifier(base::Thread* notify_thread) : done_event_(false, false), notify_thread_(notify_thread) {} -void ThreadNotifier::Notify(NotificationType type, +void ThreadNotifier::Notify(int type, const NotificationDetails& details) { Notify(type, NotificationService::AllSources(), details); } -void ThreadNotifier::Notify(NotificationType type, +void ThreadNotifier::Notify(int type, const NotificationSource& source, const NotificationDetails& details) { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); @@ -70,7 +70,7 @@ void ThreadNotifier::Notify(NotificationType type, ThreadNotifier::~ThreadNotifier() {} -void ThreadNotifier::NotifyTask(NotificationType type, +void ThreadNotifier::NotifyTask(int type, const NotificationSource& source, const NotificationDetails& details) { NotificationService::current()->Notify(type, source, details); |