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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 const base::FilePath::CharType kExtensionsCookieFilename[] = | 164 const base::FilePath::CharType kExtensionsCookieFilename[] = |
165 FPL("Extension Cookies"); | 165 FPL("Extension Cookies"); |
166 const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); | 166 const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
167 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 167 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
168 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 168 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); |
169 const base::FilePath::CharType kHistoryFilename[] = FPL("History"); | 169 const base::FilePath::CharType kHistoryFilename[] = FPL("History"); |
170 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 170 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
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 kManagedUserSettingsFilename[] = | 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 kProtectedPreferencesFilename[] = |
182 FPL("Protected Preferences"); | 182 FPL("Protected Preferences"); |
183 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 183 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
184 const base::FilePath::CharType kResetPromptMementoFilename[] = | 184 const base::FilePath::CharType kResetPromptMementoFilename[] = |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 const char kApplicationClientIDStringForAVScanning[] = | 268 const char kApplicationClientIDStringForAVScanning[] = |
269 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 269 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
270 | 270 |
271 #if defined(OS_ANDROID) | 271 #if defined(OS_ANDROID) |
272 const size_t kMaxMetaTagAttributeLength = 2000; | 272 const size_t kMaxMetaTagAttributeLength = 2000; |
273 #endif | 273 #endif |
274 | 274 |
275 } // namespace chrome | 275 } // namespace chrome |
276 | 276 |
277 #undef FPL | 277 #undef FPL |
OLD | NEW |