OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/notifications/notification_types.h" | 5 #include "ui/message_center/notification_types.h" |
6 | 6 |
7 namespace ui { | 7 namespace message_center { |
8 | |
9 namespace notifications { | |
10 | 8 |
11 const char kMessageIntentKey[] = "message_intent"; | 9 const char kMessageIntentKey[] = "message_intent"; |
12 const char kPriorityKey[] = "priority"; | 10 const char kPriorityKey[] = "priority"; |
13 const char kTimestampKey[] = "timestamp"; | 11 const char kTimestampKey[] = "timestamp"; |
14 const char kUnreadCountKey[] = "unread_count"; | 12 const char kUnreadCountKey[] = "unread_count"; |
15 const char kButtonOneTitleKey[] = "button_one_title"; | 13 const char kButtonOneTitleKey[] = "button_one_title"; |
16 const char kButtonOneIconUrlKey[] = "button_one_icon_url"; | 14 const char kButtonOneIconUrlKey[] = "button_one_icon_url"; |
17 const char kButtonTwoTitleKey[] = "button_two_title"; | 15 const char kButtonTwoTitleKey[] = "button_two_title"; |
18 const char kButtonTwoIconUrlKey[] = "button_two_icon_url"; | 16 const char kButtonTwoIconUrlKey[] = "button_two_icon_url"; |
19 const char kExpandedMessageKey[] = "expanded_message"; | 17 const char kExpandedMessageKey[] = "expanded_message"; |
20 const char kImageUrlKey[] = "image_url"; | 18 const char kImageUrlKey[] = "image_url"; |
21 const char kItemsKey[] = "items"; | 19 const char kItemsKey[] = "items"; |
22 const char kItemTitleKey[] = "title"; | 20 const char kItemTitleKey[] = "title"; |
23 const char kItemMessageKey[] = "message"; | 21 const char kItemMessageKey[] = "message"; |
24 | 22 |
25 } // namespace notifications | 23 } // namespace message_center |
26 | |
27 } // namespace ui | |
OLD | NEW |