| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 #ifndef WebNotificationConstants_h |
| 6 #define WebNotificationConstants_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 // TODO(johnme): The maximum number of actions is platform-specific and should |
| 11 // be indicated by the embedder. |
| 12 |
| 13 // Maximum number of actions on a Platform Notification. |
| 14 static const size_t kWebNotificationMaxActions = 2; |
| 15 |
| 16 // TODO(mvanouwerkerk): Update the notification resource loader to get the |
| 17 // appropriate image sizes from the embedder. |
| 18 |
| 19 // The maximum reasonable notification icon size, scaled from dip units to |
| 20 // pixels using the largest supported scaling factor. |
| 21 static const int kWebNotificationMaxIconSizePx = 320; // 80 dip * 4 |
| 22 |
| 23 // The maximum reasonable badge size, scaled from dip units to pixels using the |
| 24 // largest supported scaling factor. |
| 25 static const int kWebNotificationMaxBadgeSizePx = 96; // 24 dip * 4 |
| 26 |
| 27 // The maximum reasonable action icon size, scaled from dip units to |
| 28 // pixels using the largest supported scaling factor. |
| 29 static const int kWebNotificationMaxActionIconSizePx = 128; // 32 dip * 4 |
| 30 |
| 31 } // namespace blink |
| 32 |
| 33 #endif // WebNotificationConstants_h |
| OLD | NEW |