| 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 // A handful of resource-like constants related to the Chrome application. | 5 // A handful of resource-like constants related to the Chrome application. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ | 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 // stored in a subkey named with the version number of the build. Each value | 136 // stored in a subkey named with the version number of the build. Each value |
| 137 // under the subkey represents an additional attempt. | 137 // under the subkey represents an additional attempt. |
| 138 extern const wchar_t kBrowserCrashDumpAttemptsRegistryPath[]; | 138 extern const wchar_t kBrowserCrashDumpAttemptsRegistryPath[]; |
| 139 #endif | 139 #endif |
| 140 | 140 |
| 141 #if defined(OS_CHROMEOS) | 141 #if defined(OS_CHROMEOS) |
| 142 // Chrome OS profile directories have custom prefix. | 142 // Chrome OS profile directories have custom prefix. |
| 143 // Profile path format: [user_data_dir]/u-[$hash] | 143 // Profile path format: [user_data_dir]/u-[$hash] |
| 144 // Ex.: /home/chronos/u-0123456789 | 144 // Ex.: /home/chronos/u-0123456789 |
| 145 extern const char kProfileDirPrefix[]; | 145 extern const char kProfileDirPrefix[]; |
| 146 |
| 147 // Legacy profile dir that was used when only one cryptohome has been mounted. |
| 148 extern const char kLegacyProfileDir[]; |
| 149 |
| 150 // This must be kept in sync with TestingProfile::kTestUserProfileDir. |
| 151 extern const char kTestUserProfileDir[]; |
| 146 #endif | 152 #endif |
| 147 | 153 |
| 148 // Used to identify the application to the system AV function in Windows. | 154 // Used to identify the application to the system AV function in Windows. |
| 149 extern const char kApplicationClientIDStringForAVScanning[]; | 155 extern const char kApplicationClientIDStringForAVScanning[]; |
| 150 | 156 |
| 151 } // namespace chrome | 157 } // namespace chrome |
| 152 | 158 |
| 153 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 159 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |