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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 FPL("Extension Activity"); | 148 FPL("Extension Activity"); |
149 const base::FilePath::CharType kExtensionsCookieFilename[] = | 149 const base::FilePath::CharType kExtensionsCookieFilename[] = |
150 FPL("Extension Cookies"); | 150 FPL("Extension Cookies"); |
151 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 151 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
152 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 152 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); |
153 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 153 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
154 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 154 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
155 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 155 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
156 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 156 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
157 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 157 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 158 const base::FilePath::CharType kNetworkPersistentStateFilename[] = |
| 159 FPL("Network Persistent State"); |
158 const base::FilePath::CharType kNewTabThumbnailsFilename[] = | 160 const base::FilePath::CharType kNewTabThumbnailsFilename[] = |
159 FPL("Top Thumbnails"); | 161 FPL("Top Thumbnails"); |
160 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 162 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
161 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = | 163 const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[] = |
162 FPL("Protected Preferences"); | 164 FPL("Protected Preferences"); |
163 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 165 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
164 const base::FilePath::CharType kResetPromptMementoFilename[] = | 166 const base::FilePath::CharType kResetPromptMementoFilename[] = |
165 FPL("Reset Prompt Memento"); | 167 FPL("Reset Prompt Memento"); |
166 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = | 168 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = |
167 FPL("Safe Browsing"); | 169 FPL("Safe Browsing"); |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 // user can select for different file types. | 248 // user can select for different file types. |
247 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 249 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
248 const char kApplicationClientIDStringForAVScanning[] = | 250 const char kApplicationClientIDStringForAVScanning[] = |
249 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 251 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
250 | 252 |
251 const size_t kMaxMetaTagAttributeLength = 2000; | 253 const size_t kMaxMetaTagAttributeLength = 2000; |
252 | 254 |
253 } // namespace chrome | 255 } // namespace chrome |
254 | 256 |
255 #undef FPL | 257 #undef FPL |
OLD | NEW |