notification_types.cc revision c2e0dbddbe15c98d52c4786dac06cb8952a8ae6d
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.
4
5#include "ui/message_center/notification_types.h"
6
7namespace message_center {
8
9const char kMessageIntentKey[] = "message_intent";
10const char kPriorityKey[] = "priority";
11const char kTimestampKey[] = "timestamp";
12const char kUnreadCountKey[] = "unread_count";
13const char kButtonOneTitleKey[] = "button_one_title";
14const char kButtonOneIconUrlKey[] = "button_one_icon_url";
15const char kButtonTwoTitleKey[] = "button_two_title";
16const char kButtonTwoIconUrlKey[] = "button_two_icon_url";
17const char kExpandedMessageKey[] = "expanded_message";
18const char kImageUrlKey[] = "image_url";
19const char kItemsKey[] = "items";
20const char kItemTitleKey[] = "title";
21const char kItemMessageKey[] = "message";
22const char kPrivateNeverTimeoutKey[] = "private_never_timeout";
23
24}  // namespace message_center
25