Chromium Code Reviews| 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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8d048af0d012839b4c97f909f153cb5d383cc5ac |
| --- /dev/null |
| +++ b/chrome/service/chrome_service_application_mac.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright (c) 2010 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 "content/common/chrome_application_mac.h" |
| + |
| +@interface ServiceCrApplication : CrApplication |
|
Nico
2011/08/04 22:04:38
Needs a comment
abeera
2011/08/08 17:10:48
Done.
|
| + |
| +@end |
| + |
| +#endif // __OBJC__ |
| + |
| +namespace chrome_service_application_mac { |
| +// To be used to instantiate ServiceCrApplication from C++ code. |
| +void RegisterServiceCrApp(); |
| +} // namespace chrome_service_application_mac |
| + |
| +#endif // CHROME_SERVICE_CHROME_SERVICE_APPLICATION_MAC_H_ |
| + |