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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 170 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
171 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 171 const base::FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
172 const base::FilePath::CharType kManagedUserSettingsFilename[] = | 172 const base::FilePath::CharType kManagedUserSettingsFilename[] = |
173 FPL("Managed Mode Settings"); | 173 FPL("Managed Mode Settings"); |
174 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 174 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
175 const base::FilePath::CharType kNewTabThumbnailsFilename[] = | 175 const base::FilePath::CharType kNewTabThumbnailsFilename[] = |
176 FPL("Top Thumbnails"); | 176 FPL("Top Thumbnails"); |
177 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 177 const base::FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
178 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 178 const base::FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
179 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); | 179 const base::FilePath::CharType kReadmeFilename[] = FPL("README"); |
| 180 const base::FilePath::CharType kResetPromptMementoFilename[] = |
| 181 FPL("Reset Prompt Memento"); |
180 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = | 182 const base::FilePath::CharType kSafeBrowsingBaseFilename[] = |
181 FPL("Safe Browsing"); | 183 FPL("Safe Browsing"); |
182 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 184 const base::FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
183 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); | 185 const base::FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); |
184 const base::FilePath::CharType kSingletonCookieFilename[] = | 186 const base::FilePath::CharType kSingletonCookieFilename[] = |
185 FPL("SingletonCookie"); | 187 FPL("SingletonCookie"); |
186 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 188 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
187 const base::FilePath::CharType kSingletonSocketFilename[] = | 189 const base::FilePath::CharType kSingletonSocketFilename[] = |
188 FPL("SingletonSocket"); | 190 FPL("SingletonSocket"); |
189 const base::FilePath::CharType kSyncCredentialsFilename[] = | 191 const base::FilePath::CharType kSyncCredentialsFilename[] = |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 | 263 |
262 // This GUID is associated with any 'don't ask me again' settings that the | 264 // This GUID is associated with any 'don't ask me again' settings that the |
263 // user can select for different file types. | 265 // user can select for different file types. |
264 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 266 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
265 const char kApplicationClientIDStringForAVScanning[] = | 267 const char kApplicationClientIDStringForAVScanning[] = |
266 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 268 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
267 | 269 |
268 } // namespace chrome | 270 } // namespace chrome |
269 | 271 |
270 #undef FPL | 272 #undef FPL |
OLD | NEW |