blob: ba60d5d650ffb89968e6f2c27519968b8032675e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_SERVICE_CHROME_SERVICE_APPLICATION_MAC_H_
#define CHROME_SERVICE_CHROME_SERVICE_APPLICATION_MAC_H_
#ifdef __OBJC__
#import <AppKit/AppKit.h>
// Top level Mac Application for the service process.
@interface ServiceApplication : NSApplication
@end
#endif // __OBJC__
namespace chrome_service_application_mac {
// To be used to instantiate ServiceApplication from C++ code.
void RegisterServiceApp();
} // namespace chrome_service_application_mac
#endif // CHROME_SERVICE_CHROME_SERVICE_APPLICATION_MAC_H_
|