| Index: chrome/browser/notifications/message_center_settings_controller_unittest.cc
|
| diff --git a/chrome/browser/notifications/message_center_settings_controller_unittest.cc b/chrome/browser/notifications/message_center_settings_controller_unittest.cc
|
| index e3b05edefd4d845549e754245db267db5882e4fd..d33945abcc6bf933a6571c2153f5b74eb2f606b1 100644
|
| --- a/chrome/browser/notifications/message_center_settings_controller_unittest.cc
|
| +++ b/chrome/browser/notifications/message_center_settings_controller_unittest.cc
|
| @@ -278,7 +278,7 @@ TEST_F(MessageCenterSettingsControllerTest, NotifierSortOrder) {
|
| extension_service->AddExtension(baf_app.Build().get());
|
| CreateController();
|
|
|
| - std::vector<message_center::Notifier*> notifiers;
|
| + std::vector<std::unique_ptr<message_center::Notifier>> notifiers;
|
| controller()->GetNotifierList(¬ifiers);
|
|
|
| #if !defined(OS_CHROMEOS)
|
| @@ -292,8 +292,6 @@ TEST_F(MessageCenterSettingsControllerTest, NotifierSortOrder) {
|
|
|
| EXPECT_EQ(kBarId, notifiers[0]->notifier_id.id);
|
| EXPECT_EQ(kFooId, notifiers[1]->notifier_id.id);
|
| -
|
| - base::STLDeleteElements(¬ifiers);
|
| }
|
|
|
| TEST_F(MessageCenterSettingsControllerTest, SetWebPageNotifierEnabled) {
|
|
|