// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_ #define CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_ namespace content { // Delivery status for persistent notification clicks to a Service Worker. // PersistentNotificationStatus entries should not be reordered or removed. enum class PersistentNotificationStatus { … }; } // content #endif // CONTENT_PUBLIC_COMMON_PERSISTENT_NOTIFICATION_STATUS_H_