Commit fd3d602b authored by Mohamed Adel's avatar Mohamed Adel Committed by Commit Bot

Change filename for notification_service_delegate.*

The filename and class name should match, so the files were renamed to
service_delegate.h and service_delegate.mm.

Change-Id: Ib268c39ff7197002f56dfa637ddf81d237326132
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2507749Reviewed-by: default avatarRobert Sesek <rsesek@chromium.org>
Commit-Queue: Mohamed Adel <adelm@google.com>
Cr-Commit-Position: refs/heads/master@{#822185}
parent 43be5460
...@@ -17,8 +17,8 @@ mac_app_bundle("alert_notification_xpc_service") { ...@@ -17,8 +17,8 @@ mac_app_bundle("alert_notification_xpc_service") {
"alert_notification_service.mm", "alert_notification_service.mm",
"alert_nsnotification_service.h", "alert_nsnotification_service.h",
"alert_nsnotification_service.mm", "alert_nsnotification_service.mm",
"notification_service_delegate.h", "service_delegate.h",
"notification_service_delegate.mm", "service_delegate.mm",
"xpc_service_main.mm", "xpc_service_main.mm",
"xpc_transaction_handler.h", "xpc_transaction_handler.h",
"xpc_transaction_handler.mm", "xpc_transaction_handler.mm",
......
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_NOTIFICATION_SERVICE_DELEGATE_H_ #ifndef CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_SERVICE_DELEGATE_H_
#define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_NOTIFICATION_SERVICE_DELEGATE_H_ #define CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_SERVICE_DELEGATE_H_
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
@interface ServiceDelegate : NSObject <NSXPCListenerDelegate> @interface ServiceDelegate : NSObject <NSXPCListenerDelegate>
@end @end
#endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_NOTIFICATION_SERVICE_DELEGATE_H_ #endif // CHROME_BROWSER_UI_COCOA_NOTIFICATIONS_SERVICE_DELEGATE_H_
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#import "chrome/browser/ui/cocoa/notifications/notification_service_delegate.h" #import "chrome/browser/ui/cocoa/notifications/service_delegate.h"
#import <AppKit/AppKit.h> #import <AppKit/AppKit.h>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <xpc/xpc.h> #include <xpc/xpc.h>
#include "base/mac/scoped_nsobject.h" #include "base/mac/scoped_nsobject.h"
#import "chrome/browser/ui/cocoa/notifications/notification_service_delegate.h" #import "chrome/browser/ui/cocoa/notifications/service_delegate.h"
// The main method of the notification alert xpc service. // The main method of the notification alert xpc service.
// It is initiaized by Chrome on demand whenever a notification of type alert // It is initiaized by Chrome on demand whenever a notification of type alert
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment