| Index: chrome/browser/notifications/message_center_settings_controller.cc
|
| diff --git a/chrome/browser/notifications/message_center_settings_controller.cc b/chrome/browser/notifications/message_center_settings_controller.cc
|
| index 1e82df5aab71f045f723f33fef0f61a1e9f7f30b..4cc061f94308b7e7312739ab7f7be0f94ada8a8c 100644
|
| --- a/chrome/browser/notifications/message_center_settings_controller.cc
|
| +++ b/chrome/browser/notifications/message_center_settings_controller.cc
|
| @@ -26,6 +26,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/profiles/profile_info_cache.h"
|
| #include "chrome/browser/profiles/profile_manager.h"
|
| +#include "chrome/common/chrome_content_settings_client.h"
|
| #include "chrome/common/extensions/api/notifications.h"
|
| #include "chrome/common/extensions/extension_constants.h"
|
| #include "components/favicon_base/favicon_types.h"
|
| @@ -257,7 +258,8 @@ void MessageCenterSettingsController::GetNotifierList(
|
| continue;
|
| }
|
|
|
| - std::string url_pattern = iter->primary_pattern.ToString();
|
| + content_settings::ChromeContentSettingsClient client;
|
| + std::string url_pattern = iter->primary_pattern.ToString(&client);
|
| base::string16 name = base::UTF8ToUTF16(url_pattern);
|
| GURL url(url_pattern);
|
| NotifierId notifier_id(url);
|
|
|