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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 const FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); | 151 const FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); |
152 #endif | 152 #endif |
153 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 153 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
154 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); | 154 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); |
155 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 155 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
156 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 156 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
157 const FilePath::CharType kCRLSetFilename[] = | 157 const FilePath::CharType kCRLSetFilename[] = |
158 FPL("Certificate Revocation Lists"); | 158 FPL("Certificate Revocation Lists"); |
159 const FilePath::CharType kCustomDictionaryFileName[] = | 159 const FilePath::CharType kCustomDictionaryFileName[] = |
160 FPL("Custom Dictionary.txt"); | 160 FPL("Custom Dictionary.txt"); |
161 const FilePath::CharType kExtensionActivityLogFilename[] = | |
162 FPL("Extension Activity"); | |
163 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); | 161 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); |
164 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); | 162 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
165 const FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 163 const FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
166 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 164 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
167 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 165 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
168 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 166 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
169 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 167 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
170 const FilePath::CharType kManagedModePolicyFilename[] = | 168 const FilePath::CharType kManagedModePolicyFilename[] = |
171 FPL("Managed Mode Settings"); | 169 FPL("Managed Mode Settings"); |
172 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 170 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 241 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
244 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 242 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
245 const wchar_t kMetroRegistryPath[] = | 243 const wchar_t kMetroRegistryPath[] = |
246 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; | 244 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; |
247 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 245 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
248 #endif | 246 #endif |
249 | 247 |
250 } // namespace chrome | 248 } // namespace chrome |
251 | 249 |
252 #undef FPL | 250 #undef FPL |
OLD | NEW |