root/ui/message_center/notification_types.cc

/* [<][>][^][v][top][bottom][index][help] */
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/message_center/notification_types.h"

namespace message_center {

const char kPriorityKey[] = "priority";
const char kTimestampKey[] = "timestamp";
const char kButtonOneTitleKey[] = "button_one_title";
const char kButtonOneIconUrlKey[] = "button_one_icon_url";
const char kButtonTwoTitleKey[] = "button_two_title";
const char kButtonTwoIconUrlKey[] = "button_two_icon_url";
const char kExpandedMessageKey[] = "expanded_message";
const char kImageUrlKey[] = "image_url";
const char kItemsKey[] = "items";
const char kItemTitleKey[] = "title";
const char kItemMessageKey[] = "message";
const char kPrivateNeverTimeoutKey[] = "private_never_timeout";

}  // namespace message_center

/* [<][>][^][v][top][bottom][index][help] */