// Copyright 2013 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_MESSAGE_CENTER_TYPES_H_ #define UI_MESSAGE_CENTER_MESSAGE_CENTER_TYPES_H_ namespace message_center { enum Visibility { … }; // Identifies the source of a displayed notification. enum DisplaySource { … }; // Enumeration of quiet mode set by user or focus mode. enum class QuietModeSourceType { … }; } // namespace message_center #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_TYPES_H_