| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/common/extensions/api/notifications/notification_style.h" | |
| 6 | |
| 7 #include "ui/message_center/message_center_style.h" | |
| 8 | |
| 9 NotificationBitmapSizes GetNotificationBitmapSizes() { | |
| 10 NotificationBitmapSizes sizes; | |
| 11 sizes.image_size = | |
| 12 gfx::Size(message_center::kNotificationPreferredImageWidth, | |
| 13 message_center::kNotificationPreferredImageHeight); | |
| 14 sizes.icon_size = gfx::Size(message_center::kNotificationIconSize, | |
| 15 message_center::kNotificationIconSize); | |
| 16 sizes.button_icon_size = | |
| 17 gfx::Size(message_center::kNotificationButtonIconSize, | |
| 18 message_center::kNotificationButtonIconSize); | |
| 19 return sizes; | |
| 20 } | |
| OLD | NEW |