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 kPriorityKey[] = "priority";
10const char kTimestampKey[] = "timestamp";
11const char kButtonOneTitleKey[] = "button_one_title";
12const char kButtonOneIconUrlKey[] = "button_one_icon_url";
13const char kButtonTwoTitleKey[] = "button_two_title";
14const char kButtonTwoIconUrlKey[] = "button_two_icon_url";
15const char kExpandedMessageKey[] = "expanded_message";
16const char kImageUrlKey[] = "image_url";
17const char kItemsKey[] = "items";
18const char kItemTitleKey[] = "title";
19const char kItemMessageKey[] = "message";
20const char kPrivateNeverTimeoutKey[] = "private_never_timeout";
21
22}  // namespace message_center
23