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