| 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 "chrome/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "chrome/common/chrome_version.h" | 8 #include "chrome/common/chrome_version.h" |
| 9 | 9 |
| 10 #define FPL FILE_PATH_LITERAL | 10 #define FPL FILE_PATH_LITERAL |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 const base::FilePath::CharType kOfflinePageMetadataDirname[] = | 154 const base::FilePath::CharType kOfflinePageMetadataDirname[] = |
| 155 FPL("Offline Pages/metadata"); | 155 FPL("Offline Pages/metadata"); |
| 156 const base::FilePath::CharType kOfflinePageRequestQueueDirname[] = | 156 const base::FilePath::CharType kOfflinePageRequestQueueDirname[] = |
| 157 FPL("Offline Pages/request_queue"); | 157 FPL("Offline Pages/request_queue"); |
| 158 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 158 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 159 const base::FilePath::CharType kPreviewsOptOutDBFilename[] = | 159 const base::FilePath::CharType kPreviewsOptOutDBFilename[] = |
| 160 FPL("previews_opt_out.db"); | 160 FPL("previews_opt_out.db"); |
| 161 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = | 161 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = |
| 162 FPL("Protected Preferences"); | 162 FPL("Protected Preferences"); |
| 163 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 163 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
| 164 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = | |
| 165 FPL("Safe Browsing"); | |
| 166 const base::FilePath::CharType kSecurePreferencesFilename[] = | 164 const base::FilePath::CharType kSecurePreferencesFilename[] = |
| 167 FPL("Secure Preferences"); | 165 FPL("Secure Preferences"); |
| 168 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 166 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
| 169 const base::FilePath::CharType kSingletonCookieFilename[] = | 167 const base::FilePath::CharType kSingletonCookieFilename[] = |
| 170 FPL("SingletonCookie"); | 168 FPL("SingletonCookie"); |
| 171 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 169 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 172 const base::FilePath::CharType kSingletonSocketFilename[] = | 170 const base::FilePath::CharType kSingletonSocketFilename[] = |
| 173 FPL("SingletonSocket"); | 171 FPL("SingletonSocket"); |
| 174 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = | 172 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = |
| 175 FPL("Managed Mode Settings"); | 173 FPL("Managed Mode Settings"); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 // user can select for different file types. | 210 // user can select for different file types. |
| 213 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 211 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 214 const char kApplicationClientIDStringForAVScanning[] = | 212 const char kApplicationClientIDStringForAVScanning[] = |
| 215 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 213 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 216 | 214 |
| 217 const size_t kMaxMetaTagAttributeLength = 2000; | 215 const size_t kMaxMetaTagAttributeLength = 2000; |
| 218 | 216 |
| 219 } // namespace chrome | 217 } // namespace chrome |
| 220 | 218 |
| 221 #undef FPL | 219 #undef FPL |
| OLD | NEW |