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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 extern const wchar_t kLaunchModeValue[]; | 132 extern const wchar_t kLaunchModeValue[]; |
133 #endif | 133 #endif |
134 | 134 |
135 #if defined(OS_CHROMEOS) | 135 #if defined(OS_CHROMEOS) |
136 // Chrome OS profile directories have custom prefix. | 136 // Chrome OS profile directories have custom prefix. |
137 // Profile path format: [user_data_dir]/u-[$hash] | 137 // Profile path format: [user_data_dir]/u-[$hash] |
138 // Ex.: /home/chronos/u-0123456789 | 138 // Ex.: /home/chronos/u-0123456789 |
139 extern const char kProfileDirPrefix[]; | 139 extern const char kProfileDirPrefix[]; |
140 #endif | 140 #endif |
141 | 141 |
| 142 // Used to identify the application to the system AV function in Windows. |
| 143 extern const char kApplicationClientIDStringForAVScanning[]; |
| 144 |
142 } // namespace chrome | 145 } // namespace chrome |
143 | 146 |
144 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 147 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |