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"); | |
145 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); | 142 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); |
146 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 143 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
147 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 144 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
148 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 145 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
149 const FilePath::CharType kManagedModePolicyFilename[] = | 146 const FilePath::CharType kManagedModePolicyFilename[] = |
150 FPL("Managed Mode Settings"); | 147 FPL("Managed Mode Settings"); |
151 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 148 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
152 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); | 149 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); |
153 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 150 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
154 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 151 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; | 211 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; |
215 const wchar_t kMetroNavigationAndSearchMessage[] = | 212 const wchar_t kMetroNavigationAndSearchMessage[] = |
216 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 213 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
217 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 214 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
218 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 215 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
219 #endif | 216 #endif |
220 | 217 |
221 } // namespace chrome | 218 } // namespace chrome |
222 | 219 |
223 #undef FPL | 220 #undef FPL |
OLD | NEW |