| Index: chrome/service/chrome_service_application_mac.h
|
| diff --git a/chrome/service/chrome_service_application_mac.h b/chrome/service/chrome_service_application_mac.h
|
| index 554a19f50998466137ca9d1eb9a015eef6049875..235c2a857f698f56f8d7392a94d7e5ec14bb3d47 100644
|
| --- a/chrome/service/chrome_service_application_mac.h
|
| +++ b/chrome/service/chrome_service_application_mac.h
|
| @@ -8,10 +8,10 @@
|
|
|
| #ifdef __OBJC__
|
|
|
| -#import "content/common/chrome_application_mac.h"
|
| +#import <AppKit/AppKit.h>
|
|
|
| // Top level Mac Application for the service process.
|
| -@interface ServiceCrApplication : CrApplication
|
| +@interface ServiceApplication : NSApplication
|
|
|
| @end
|
|
|
| @@ -19,9 +19,9 @@
|
|
|
| namespace chrome_service_application_mac {
|
|
|
| -// To be used to instantiate ServiceCrApplication from C++ code.
|
| -void RegisterServiceCrApp();
|
| +// To be used to instantiate ServiceApplication from C++ code.
|
| +void RegisterServiceApp();
|
| +
|
| } // namespace chrome_service_application_mac
|
|
|
| #endif // CHROME_SERVICE_CHROME_SERVICE_APPLICATION_MAC_H_
|
| -
|
|
|