diff options
Diffstat (limited to 'ui/message_center/message_center.cc')
-rw-r--r-- | ui/message_center/message_center.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/message_center/message_center.cc b/ui/message_center/message_center.cc index 97f05ce..29492a8 100644 --- a/ui/message_center/message_center.cc +++ b/ui/message_center/message_center.cc @@ -106,20 +106,20 @@ void MessageCenter::RemoveNotification(const std::string& id) { } void MessageCenter::SetNotificationIcon(const std::string& notification_id, - const gfx::ImageSkia& image) { + const gfx::Image& image) { if (notification_list_->SetNotificationIcon(notification_id, image)) NotifyMessageCenterChanged(true); } void MessageCenter::SetNotificationImage(const std::string& notification_id, - const gfx::ImageSkia& image) { + const gfx::Image& image) { if (notification_list_->SetNotificationImage(notification_id, image)) NotifyMessageCenterChanged(true); } void MessageCenter::SetNotificationButtonIcon( const std::string& notification_id, int button_index, - const gfx::ImageSkia& image) { + const gfx::Image& image) { if (notification_list_->SetNotificationButtonIcon(notification_id, button_index, image)) NotifyMessageCenterChanged(true); |