| Index: chrome/browser/notifications/notification_platform_bridge_android.h
|
| diff --git a/chrome/browser/notifications/notification_ui_manager_android.h b/chrome/browser/notifications/notification_platform_bridge_android.h
|
| similarity index 87%
|
| rename from chrome/browser/notifications/notification_ui_manager_android.h
|
| rename to chrome/browser/notifications/notification_platform_bridge_android.h
|
| index 626a2a2218c3c51d2063879ed99f3b206637b5db..28fa0336b294d0edcbddb58a4082318dd7b2d6a4 100644
|
| --- a/chrome/browser/notifications/notification_ui_manager_android.h
|
| +++ b/chrome/browser/notifications/notification_platform_bridge_android.h
|
| @@ -2,8 +2,8 @@
|
| // 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_UI_MANAGER_ANDROID_H_
|
| -#define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_ANDROID_H_
|
| +#ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_ANDROID_H_
|
| +#define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_ANDROID_H_
|
|
|
| #include <jni.h>
|
| #include <stdint.h>
|
| @@ -27,10 +27,10 @@
|
| // persistent Web Notifications will be forwarded directly to the associated
|
| // event handlers, as such notifications may outlive the browser process on
|
| // Android.
|
| -class NotificationUIManagerAndroid : public NotificationPlatformBridge {
|
| +class NotificationPlatformBridgeAndroid : public NotificationPlatformBridge {
|
| public:
|
| - NotificationUIManagerAndroid();
|
| - ~NotificationUIManagerAndroid() override;
|
| + NotificationPlatformBridgeAndroid();
|
| + ~NotificationPlatformBridgeAndroid() override;
|
|
|
| // Called by the Java implementation when the notification has been clicked.
|
| void OnNotificationClicked(
|
| @@ -83,7 +83,7 @@ class NotificationUIManagerAndroid : public NotificationPlatformBridge {
|
|
|
| base::android::ScopedJavaGlobalRef<jobject> java_object_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(NotificationUIManagerAndroid);
|
| + DISALLOW_COPY_AND_ASSIGN(NotificationPlatformBridgeAndroid);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_ANDROID_H_
|
| +#endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_ANDROID_H_
|
|
|