| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_HOST_CONSTANTS_MAC_H_ | 5 #ifndef REMOTING_HOST_CONSTANTS_MAC_H_ |
| 6 #define REMOTING_HOST_CONSTANTS_MAC_H_ | 6 #define REMOTING_HOST_CONSTANTS_MAC_H_ |
| 7 | 7 |
| 8 namespace remoting { | 8 namespace remoting { |
| 9 | 9 |
| 10 // The name of the Remoting Host service that is registered with launchd. | 10 // The name of the Remoting Host service that is registered with launchd. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 // Path to the service binary (.app). | 40 // Path to the service binary (.app). |
| 41 extern const char kHostBinaryPath[]; | 41 extern const char kHostBinaryPath[]; |
| 42 | 42 |
| 43 // If this file exists, it means that the host is enabled for sharing. | 43 // If this file exists, it means that the host is enabled for sharing. |
| 44 extern const char kHostEnabledPath[]; | 44 extern const char kHostEnabledPath[]; |
| 45 | 45 |
| 46 // The .plist file for the Chromoting service. | 46 // The .plist file for the Chromoting service. |
| 47 extern const char kServicePlistPath[]; | 47 extern const char kServicePlistPath[]; |
| 48 | 48 |
| 49 // Path to the host log file |
| 50 extern const char kLogFilePath[]; |
| 51 |
| 52 // Path to the log config file |
| 53 extern const char kLogFileConfigPath[]; |
| 54 |
| 49 // The branded and unbranded names for the uninstaller. | 55 // The branded and unbranded names for the uninstaller. |
| 50 // This is the only file that changes names based on branding. We define both | 56 // This is the only file that changes names based on branding. We define both |
| 51 // because we want local dev builds to be able to clean up both files. | 57 // because we want local dev builds to be able to clean up both files. |
| 52 extern const char kBrandedUninstallerPath[]; | 58 extern const char kBrandedUninstallerPath[]; |
| 53 extern const char kUnbrandedUninstallerPath[]; | 59 extern const char kUnbrandedUninstallerPath[]; |
| 54 | 60 |
| 55 } // namespace remoting | 61 } // namespace remoting |
| 56 | 62 |
| 57 #endif // REMOTING_HOST_CONSTANTS_MAC_H_ | 63 #endif // REMOTING_HOST_CONSTANTS_MAC_H_ |
| OLD | NEW |