Revert 187797 "Added tests for page launcher extensions in the a..."
[chromium-blink-merge.git] / ui / message_center / notification_types.cc
blob0cd214060e5c0bd797e93a8294ce84931676e5cb
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
3 // found in the LICENSE file.
5 #include "ui/message_center/notification_types.h"
7 namespace message_center {
9 const char kMessageIntentKey[] = "message_intent";
10 const char kPriorityKey[] = "priority";
11 const char kTimestampKey[] = "timestamp";
12 const char kUnreadCountKey[] = "unread_count";
13 const char kButtonOneTitleKey[] = "button_one_title";
14 const char kButtonOneIconUrlKey[] = "button_one_icon_url";
15 const char kButtonTwoTitleKey[] = "button_two_title";
16 const char kButtonTwoIconUrlKey[] = "button_two_icon_url";
17 const char kExpandedMessageKey[] = "expanded_message";
18 const char kImageUrlKey[] = "image_url";
19 const char kItemsKey[] = "items";
20 const char kItemTitleKey[] = "title";
21 const char kItemMessageKey[] = "message";
23 } // namespace message_center