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