Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: ui/notifications/notification_types.h

Issue 12277024: Notificaitons refactor step 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more feedback from Steven Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/notifications/OWNERS ('k') | ui/notifications/notification_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/notifications/notification_types.h
diff --git a/ui/notifications/notification_types.h b/ui/notifications/notification_types.h
deleted file mode 100644
index b510e92dfb72bd1106789d3959e8dde73fd007e8..0000000000000000000000000000000000000000
--- a/ui/notifications/notification_types.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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.
-
-#ifndef UI_NOTIFICATIONS_NOTIFICATION_TYPES_H_
-#define UI_NOTIFICATIONS_NOTIFICATION_TYPES_H_
-
-#include <string>
-
-#include "ui/base/ui_export.h"
-
-namespace ui {
-
-namespace notifications {
-
-// Keys for optional fields in Notification.
-UI_EXPORT extern const char kPriorityKey[];
-UI_EXPORT extern const char kTimestampKey[];
-UI_EXPORT extern const char kUnreadCountKey[];
-UI_EXPORT extern const char kButtonOneTitleKey[];
-UI_EXPORT extern const char kButtonOneIconUrlKey[];
-UI_EXPORT extern const char kButtonTwoTitleKey[];
-UI_EXPORT extern const char kButtonTwoIconUrlKey[];
-UI_EXPORT extern const char kExpandedMessageKey[];
-UI_EXPORT extern const char kImageUrlKey[];
-UI_EXPORT extern const char kItemsKey[];
-UI_EXPORT extern const char kItemTitleKey[];
-UI_EXPORT extern const char kItemMessageKey[];
-
-enum NotificationType {
- NOTIFICATION_TYPE_SIMPLE,
- NOTIFICATION_TYPE_BASE_FORMAT,
- NOTIFICATION_TYPE_IMAGE,
- NOTIFICATION_TYPE_MULTIPLE,
-};
-
-enum NotificationPriority {
- MIN_PRIORITY = -2,
- LOW_PRIORITY = -1,
- DEFAULT_PRIORITY = 0,
- HIGH_PRIORITY = 1,
- MAX_PRIORITY = 2,
-};
-
-} // namespace notifications
-
-} // namespace ui
-
-#endif // UI_NOTIFICATIONS_NOTIFICATION_TYPES_H_
« no previous file with comments | « ui/notifications/OWNERS ('k') | ui/notifications/notification_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698