blob: 235c2a857f698f56f8d7392a94d7e5ec14bb3d47 (
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
27
|
// Copyright (c) 2011 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_
#pragma once
#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_
|