Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: ui/message_center/notification_types.cc

Issue 14631005: Enable users of NotificationUIManager to specify binary images. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase for relanding. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/message_center/notification_types.h" 5 #include "ui/message_center/notification_types.h"
6 6
7 namespace message_center { 7 namespace message_center {
8 8
9 const char kMessageIntentKey[] = "message_intent";
10 const char kPriorityKey[] = "priority"; 9 const char kPriorityKey[] = "priority";
11 const char kTimestampKey[] = "timestamp"; 10 const char kTimestampKey[] = "timestamp";
12 const char kUnreadCountKey[] = "unread_count";
13 const char kButtonOneTitleKey[] = "button_one_title"; 11 const char kButtonOneTitleKey[] = "button_one_title";
14 const char kButtonOneIconUrlKey[] = "button_one_icon_url"; 12 const char kButtonOneIconUrlKey[] = "button_one_icon_url";
15 const char kButtonTwoTitleKey[] = "button_two_title"; 13 const char kButtonTwoTitleKey[] = "button_two_title";
16 const char kButtonTwoIconUrlKey[] = "button_two_icon_url"; 14 const char kButtonTwoIconUrlKey[] = "button_two_icon_url";
17 const char kExpandedMessageKey[] = "expanded_message"; 15 const char kExpandedMessageKey[] = "expanded_message";
18 const char kImageUrlKey[] = "image_url"; 16 const char kImageUrlKey[] = "image_url";
19 const char kItemsKey[] = "items"; 17 const char kItemsKey[] = "items";
20 const char kItemTitleKey[] = "title"; 18 const char kItemTitleKey[] = "title";
21 const char kItemMessageKey[] = "message"; 19 const char kItemMessageKey[] = "message";
22 const char kPrivateNeverTimeoutKey[] = "private_never_timeout"; 20 const char kPrivateNeverTimeoutKey[] = "private_never_timeout";
23 21
24 } // namespace message_center 22 } // namespace message_center
OLDNEW
« no previous file with comments | « ui/message_center/notification_types.h ('k') | ui/message_center/views/message_center_view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698