| 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 #include "remoting/host/constants_mac.h" | 5 #include "remoting/host/constants_mac.h" |
| 6 | 6 |
| 7 #if defined(GN_BUILD) | |
| 8 #include "remoting/host/version.h" | |
| 9 #endif | |
| 10 | |
| 11 namespace remoting { | 7 namespace remoting { |
| 12 | 8 |
| 13 #define SERVICE_NAME "org.chromium.chromoting" | 9 #define SERVICE_NAME "org.chromium.chromoting" |
| 14 | 10 |
| 15 #define APPLICATIONS_DIR "/Applications/" | 11 #define APPLICATIONS_DIR "/Applications/" |
| 16 #define HELPER_TOOLS_DIR "/Library/PrivilegedHelperTools/" | 12 #define HELPER_TOOLS_DIR "/Library/PrivilegedHelperTools/" |
| 17 #define LAUNCH_AGENTS_DIR "/Library/LaunchAgents/" | 13 #define LAUNCH_AGENTS_DIR "/Library/LaunchAgents/" |
| 18 #define PREFERENCE_PANES_DIR "/Library/PreferencePanes/" | 14 #define PREFERENCE_PANES_DIR "/Library/PreferencePanes/" |
| 19 #define LOG_DIR "/var/log/" | 15 #define LOG_DIR "/var/log/" |
| 20 #define LOG_CONFIG_DIR "/etc/newsyslog.d/" | 16 #define LOG_CONFIG_DIR "/etc/newsyslog.d/" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 39 const char kNativeMessagingManifestPath[] = | 35 const char kNativeMessagingManifestPath[] = |
| 40 "/Library/Google/Chrome/NativeMessagingHosts/" | 36 "/Library/Google/Chrome/NativeMessagingHosts/" |
| 41 "com.google.chrome.remote_desktop.json"; | 37 "com.google.chrome.remote_desktop.json"; |
| 42 | 38 |
| 43 const char kBrandedUninstallerPath[] = APPLICATIONS_DIR | 39 const char kBrandedUninstallerPath[] = APPLICATIONS_DIR |
| 44 "Chrome Remote Desktop Host Uninstaller.app"; | 40 "Chrome Remote Desktop Host Uninstaller.app"; |
| 45 const char kUnbrandedUninstallerPath[] = APPLICATIONS_DIR | 41 const char kUnbrandedUninstallerPath[] = APPLICATIONS_DIR |
| 46 "Chromoting Host Uninstaller.app"; | 42 "Chromoting Host Uninstaller.app"; |
| 47 | 43 |
| 48 } // namespace remoting | 44 } // namespace remoting |
| OLD | NEW |