| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 FPL("Extension Activity"); | 141 FPL("Extension Activity"); |
| 142 const base::FilePath::CharType kExtensionsCookieFilename[] = | 142 const base::FilePath::CharType kExtensionsCookieFilename[] = |
| 143 FPL("Extension Cookies"); | 143 FPL("Extension Cookies"); |
| 144 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 144 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
| 145 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 145 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); |
| 146 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 146 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 147 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 147 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
| 148 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 148 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 149 const base::FilePath::CharType kNetworkPersistentStateFilename[] = | 149 const base::FilePath::CharType kNetworkPersistentStateFilename[] = |
| 150 FPL("Network Persistent State"); | 150 FPL("Network Persistent State"); |
| 151 const base::FilePath::CharType kOfflinePageArchviesDirname[] = | 151 const base::FilePath::CharType kOfflinePageArchivesDirname[] = |
| 152 FPL("Offline Pages/archives"); | 152 FPL("Offline Pages/archives"); |
| 153 const base::FilePath::CharType kOfflinePageMetadataDirname[] = | 153 const base::FilePath::CharType kOfflinePageMetadataDirname[] = |
| 154 FPL("Offline Pages/metadata"); | 154 FPL("Offline Pages/metadata"); |
| 155 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 155 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 156 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = | 156 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = |
| 157 FPL("Protected Preferences"); | 157 FPL("Protected Preferences"); |
| 158 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 158 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
| 159 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = | 159 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = |
| 160 FPL("Safe Browsing"); | 160 FPL("Safe Browsing"); |
| 161 const base::FilePath::CharType kSecurePreferencesFilename[] = | 161 const base::FilePath::CharType kSecurePreferencesFilename[] = |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 // user can select for different file types. | 216 // user can select for different file types. |
| 217 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 217 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 218 const char kApplicationClientIDStringForAVScanning[] = | 218 const char kApplicationClientIDStringForAVScanning[] = |
| 219 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 219 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 220 | 220 |
| 221 const size_t kMaxMetaTagAttributeLength = 2000; | 221 const size_t kMaxMetaTagAttributeLength = 2000; |
| 222 | 222 |
| 223 } // namespace chrome | 223 } // namespace chrome |
| 224 | 224 |
| 225 #undef FPL | 225 #undef FPL |
| OLD | NEW |