Index: chrome/browser/services/gcm/gcm_profile_service_unittest.cc |
diff --git a/chrome/browser/services/gcm/gcm_profile_service_unittest.cc b/chrome/browser/services/gcm/gcm_profile_service_unittest.cc |
index ff6ce35ad46df5dd859cf5488d843fcad6b9c266..e4d170d61cfc6e563d6d80b750e191b902d353dd 100644 |
--- a/chrome/browser/services/gcm/gcm_profile_service_unittest.cc |
+++ b/chrome/browser/services/gcm/gcm_profile_service_unittest.cc |
@@ -21,6 +21,7 @@ |
#include "components/gcm_driver/gcm_client_factory.h" |
#include "components/pref_registry/pref_registry_syncable.h" |
#include "content/public/browser/browser_context.h" |
+#include "content/public/browser/browser_thread.h" |
#include "content/public/test/test_browser_thread_bundle.h" |
#include "google_apis/gcm/gcm_client.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -36,8 +37,12 @@ const char kUserID[] = "user"; |
KeyedService* BuildGCMProfileService(content::BrowserContext* context) { |
return new GCMProfileService( |
Profile::FromBrowserContext(context), |
- scoped_ptr<GCMClientFactory>( |
- new FakeGCMClientFactory(FakeGCMClient::NO_DELAY_START))); |
+ scoped_ptr<GCMClientFactory>(new FakeGCMClientFactory( |
+ FakeGCMClient::NO_DELAY_START, |
+ content::BrowserThread::GetMessageLoopProxyForThread( |
+ content::BrowserThread::UI), |
+ content::BrowserThread::GetMessageLoopProxyForThread( |
+ content::BrowserThread::IO)))); |
} |
} // namespace |