| Index: chrome/browser/extensions/extension_gcm_app_handler_unittest.cc
|
| diff --git a/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc b/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc
|
| index 3fec12467cae1d9cc23a061f3ec83d5629a44064..d5d119e46f7330591f2faa1190dc8006ebc87c01 100644
|
| --- a/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc
|
| +++ b/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc
|
| @@ -208,7 +208,7 @@ class ExtensionGCMAppHandlerTest : public testing::Test {
|
| worker_pool->GetSequencedTaskRunnerWithShutdownBehavior(
|
| worker_pool->GetSequenceToken(),
|
| base::SequencedWorkerPool::SKIP_ON_SHUTDOWN));
|
| - return base::WrapUnique(new gcm::GCMProfileService(
|
| + return base::MakeUnique<gcm::GCMProfileService>(
|
| profile->GetPrefs(), profile->GetPath(), profile->GetRequestContext(),
|
| chrome::GetChannel(),
|
| std::unique_ptr<ProfileIdentityProvider>(new ProfileIdentityProvider(
|
| @@ -217,7 +217,7 @@ class ExtensionGCMAppHandlerTest : public testing::Test {
|
| LoginUIServiceFactory::GetShowLoginPopupCallbackForProfile(
|
| profile))),
|
| base::WrapUnique(new gcm::FakeGCMClientFactory(ui_thread, io_thread)),
|
| - ui_thread, io_thread, blocking_task_runner));
|
| + ui_thread, io_thread, blocking_task_runner);
|
| }
|
|
|
| ExtensionGCMAppHandlerTest()
|
|
|