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/file_path.h" | 7 #include "base/file_path.h" |
8 | 8 |
9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
10 | 10 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 132 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
133 const FilePath::CharType kCRLSetFilename[] = | 133 const FilePath::CharType kCRLSetFilename[] = |
134 FPL("Certificate Revocation Lists"); | 134 FPL("Certificate Revocation Lists"); |
135 const FilePath::CharType kCustomDictionaryFileName[] = | 135 const FilePath::CharType kCustomDictionaryFileName[] = |
136 FPL("Custom Dictionary.txt"); | 136 FPL("Custom Dictionary.txt"); |
137 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); | 137 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); |
138 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); | 138 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
139 const FilePath::CharType kHistoryBookmarksFileName[] = | 139 const FilePath::CharType kHistoryBookmarksFileName[] = |
140 FPL("Bookmarks From History"); | 140 FPL("Bookmarks From History"); |
141 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 141 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
| 142 const FilePath::CharType kHQPCacheFilename[] = FPL("History Provider Cache"); |
| 143 const FilePath::CharType kHQPCacheDBFilename[] = |
| 144 FPL("History Provider Cache DB"); |
142 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); | 145 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); |
143 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 146 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
144 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 147 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
145 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 148 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
146 const FilePath::CharType kManagedModePolicyFilename[] = | 149 const FilePath::CharType kManagedModePolicyFilename[] = |
147 FPL("Managed Mode Settings"); | 150 FPL("Managed Mode Settings"); |
148 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 151 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
149 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); | 152 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); |
150 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 153 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
151 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | 154 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; | 216 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; |
214 const wchar_t kMetroNavigationAndSearchMessage[] = | 217 const wchar_t kMetroNavigationAndSearchMessage[] = |
215 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 218 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
216 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 219 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
217 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 220 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
218 #endif | 221 #endif |
219 | 222 |
220 } // namespace chrome | 223 } // namespace chrome |
221 | 224 |
222 #undef FPL | 225 #undef FPL |
OLD | NEW |