| 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 "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 171 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 172 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 172 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
| 173 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 173 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
| 174 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = | 174 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = |
| 175 FPL("Managed Mode Settings"); | 175 FPL("Managed Mode Settings"); |
| 176 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 176 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 177 const base::FilePath::CharType kNewTabThumbnailsFilename[] = | 177 const base::FilePath::CharType kNewTabThumbnailsFilename[] = |
| 178 FPL("Top Thumbnails"); | 178 FPL("Top Thumbnails"); |
| 179 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 179 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
| 180 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 180 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 181 const base::FilePath::CharType kProtectedPreferencesFilename[] = | 181 const base::FilePath::CharType kDeprecatedProtectedPreferencesFilename[] = |
| 182 FPL("Protected Preferences"); | 182 FPL("Protected Preferences"); |
| 183 const base::FilePath::CharType kSecurePreferencesFilename[] = |
| 184 FPL("Secure Preferences"); |
| 183 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 185 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
| 184 const base::FilePath::CharType kResetPromptMementoFilename[] = | 186 const base::FilePath::CharType kResetPromptMementoFilename[] = |
| 185 FPL("Reset Prompt Memento"); | 187 FPL("Reset Prompt Memento"); |
| 186 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = | 188 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = |
| 187 FPL("Safe Browsing"); | 189 FPL("Safe Browsing"); |
| 188 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 190 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
| 189 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); | 191 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); |
| 190 const base::FilePath::CharType kSingletonCookieFilename[] = | 192 const base::FilePath::CharType kSingletonCookieFilename[] = |
| 191 FPL("SingletonCookie"); | 193 FPL("SingletonCookie"); |
| 192 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 194 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 const char kApplicationClientIDStringForAVScanning[] = | 270 const char kApplicationClientIDStringForAVScanning[] = |
| 269 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 271 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 270 | 272 |
| 271 #if defined(OS_ANDROID) | 273 #if defined(OS_ANDROID) |
| 272 const size_t kMaxMetaTagAttributeLength = 2000; | 274 const size_t kMaxMetaTagAttributeLength = 2000; |
| 273 #endif | 275 #endif |
| 274 | 276 |
| 275 } // namespace chrome | 277 } // namespace chrome |
| 276 | 278 |
| 277 #undef FPL | 279 #undef FPL |
| OLD | NEW |