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