| Index: chrome/browser/notifications/message_center_notification_manager.cc
|
| diff --git a/chrome/browser/notifications/message_center_notification_manager.cc b/chrome/browser/notifications/message_center_notification_manager.cc
|
| index 1aa4665d0c3dc5a818e743624ff7929d1d0c0116..a0a31f04b5b2d7a9c9abe048fe853e9e98b9044d 100644
|
| --- a/chrome/browser/notifications/message_center_notification_manager.cc
|
| +++ b/chrome/browser/notifications/message_center_notification_manager.cc
|
| @@ -248,7 +248,7 @@ void MessageCenterNotificationManager::ImageDownloads::StartDownloads(
|
| // Notification image.
|
| StartDownloadByKey(
|
| notification,
|
| - ui::notifications::kImageUrlKey,
|
| + message_center::kImageUrlKey,
|
| message_center::kNotificationPreferredImageSize,
|
| base::Bind(&message_center::MessageCenter::SetNotificationImage,
|
| base::Unretained(message_center_),
|
| @@ -257,13 +257,13 @@ void MessageCenterNotificationManager::ImageDownloads::StartDownloads(
|
| // Notification button icons.
|
| StartDownloadByKey(
|
| notification,
|
| - ui::notifications::kButtonOneIconUrlKey,
|
| + message_center::kButtonOneIconUrlKey,
|
| message_center::kNotificationButtonIconSize,
|
| base::Bind(&message_center::MessageCenter::SetNotificationButtonIcon,
|
| base::Unretained(message_center_),
|
| notification.notification_id(), 0));
|
| StartDownloadByKey(
|
| - notification, ui::notifications::kButtonTwoIconUrlKey,
|
| + notification, message_center::kButtonTwoIconUrlKey,
|
| message_center::kNotificationButtonIconSize,
|
| base::Bind(&message_center::MessageCenter::SetNotificationButtonIcon,
|
| base::Unretained(message_center_),
|
|
|