| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 160 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 161 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 161 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
| 162 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 162 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
| 163 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 163 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 164 const base::FilePath::CharType kNewTabThumbnailsFilename[] = | 164 const base::FilePath::CharType kNewTabThumbnailsFilename[] = |
| 165 FPL("Top Thumbnails"); | 165 FPL("Top Thumbnails"); |
| 166 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 166 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 167 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = | 167 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = |
| 168 FPL("Protected Preferences"); | 168 FPL("Protected Preferences"); |
| 169 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 169 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
| 170 const base::FilePath::CharType kResetPromptMementoFilename[] = |
| 171 FPL("Reset Prompt Memento"); |
| 170 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = | 172 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = |
| 171 FPL("Safe Browsing"); | 173 FPL("Safe Browsing"); |
| 172 const base::FilePath::CharType kSecurePreferencesFilename[] = | 174 const base::FilePath::CharType kSecurePreferencesFilename[] = |
| 173 FPL("Secure Preferences"); | 175 FPL("Secure Preferences"); |
| 174 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 176 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
| 175 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); | 177 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); |
| 176 const base::FilePath::CharType kSingletonCookieFilename[] = | 178 const base::FilePath::CharType kSingletonCookieFilename[] = |
| 177 FPL("SingletonCookie"); | 179 FPL("SingletonCookie"); |
| 178 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 180 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 179 const base::FilePath::CharType kSingletonSocketFilename[] = | 181 const base::FilePath::CharType kSingletonSocketFilename[] = |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 // user can select for different file types. | 256 // user can select for different file types. |
| 255 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 257 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 256 const char kApplicationClientIDStringForAVScanning[] = | 258 const char kApplicationClientIDStringForAVScanning[] = |
| 257 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 259 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 258 | 260 |
| 259 const size_t kMaxMetaTagAttributeLength = 2000; | 261 const size_t kMaxMetaTagAttributeLength = 2000; |
| 260 | 262 |
| 261 } // namespace chrome | 263 } // namespace chrome |
| 262 | 264 |
| 263 #undef FPL | 265 #undef FPL |
| OLD | NEW |