// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_MESSAGE_CENTER_PUBLIC_CPP_NOTIFICATION_TYPES_H_ #define UI_MESSAGE_CENTER_PUBLIC_CPP_NOTIFICATION_TYPES_H_ namespace message_center { // Notification types. Used to determine the view that will represent a // notification. enum NotificationType { … }; enum NotificationPriority { … }; } // namespace message_center #endif // UI_MESSAGE_CENTER_PUBLIC_CPP_NOTIFICATION_TYPES_H_