| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 // Legacy profile dir that was used when only one cryptohome has been mounted. | 160 // Legacy profile dir that was used when only one cryptohome has been mounted. |
| 161 extern const char kLegacyProfileDir[]; | 161 extern const char kLegacyProfileDir[]; |
| 162 | 162 |
| 163 // This must be kept in sync with TestingProfile::kTestUserProfileDir. | 163 // This must be kept in sync with TestingProfile::kTestUserProfileDir. |
| 164 extern const char kTestUserProfileDir[]; | 164 extern const char kTestUserProfileDir[]; |
| 165 #endif | 165 #endif |
| 166 | 166 |
| 167 // Used to identify the application to the system AV function in Windows. | 167 // Used to identify the application to the system AV function in Windows. |
| 168 extern const char kApplicationClientIDStringForAVScanning[]; | 168 extern const char kApplicationClientIDStringForAVScanning[]; |
| 169 | 169 |
| 170 #if defined(OS_ANDROID) | |
| 171 // The largest reasonable length we'd assume for a meta tag attribute. | 170 // The largest reasonable length we'd assume for a meta tag attribute. |
| 172 extern const size_t kMaxMetaTagAttributeLength; | 171 extern const size_t kMaxMetaTagAttributeLength; |
| 173 #endif | |
| 174 | 172 |
| 175 } // namespace chrome | 173 } // namespace chrome |
| 176 | 174 |
| 177 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 175 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |