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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 141 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
142 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); | 142 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); |
143 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 143 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
144 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 144 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
145 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 145 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
146 const FilePath::CharType kManagedModePolicyFilename[] = | 146 const FilePath::CharType kManagedModePolicyFilename[] = |
147 FPL("Managed Mode Settings"); | 147 FPL("Managed Mode Settings"); |
148 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 148 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
149 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); | 149 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); |
150 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 150 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
151 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | |
152 FPL("Incognito Media Cache"); | |
153 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 151 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
154 const FilePath::CharType kReadmeFilename[] = FPL("README"); | 152 const FilePath::CharType kReadmeFilename[] = FPL("README"); |
155 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); | 153 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); |
156 const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 154 const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
157 const FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); | 155 const FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); |
158 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); | 156 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); |
159 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 157 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
160 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 158 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
161 const FilePath::CharType kSyncCredentialsFilename[] = FPL("Sync Credentials"); | 159 const FilePath::CharType kSyncCredentialsFilename[] = FPL("Sync Credentials"); |
162 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 160 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; | 211 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; |
214 const wchar_t kMetroNavigationAndSearchMessage[] = | 212 const wchar_t kMetroNavigationAndSearchMessage[] = |
215 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 213 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
216 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 214 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
217 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 215 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
218 #endif | 216 #endif |
219 | 217 |
220 } // namespace chrome | 218 } // namespace chrome |
221 | 219 |
222 #undef FPL | 220 #undef FPL |
OLD | NEW |