// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_MESSAGE_CENTER_H_ #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_MESSAGE_CENTER_H_ #include "chrome/browser/notifications/notification_platform_bridge.h" class Profile; // Implementation of the platform bridge that enables delivering notifications // through Chrome's Message Center if there is no system specific notification // platform bridge. There is only one instance of this class. class NotificationPlatformBridgeMessageCenter : public NotificationPlatformBridge { … }; #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_MESSAGE_CENTER_H_