| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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[] = | 151 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
| 152 FPL("Incognito Media Cache"); | 152 FPL("Incognito Media Cache"); |
| 153 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 153 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 154 const FilePath::CharType kReadmeFilename[] = FPL("README"); | 154 const FilePath::CharType kReadmeFilename[] = FPL("README"); |
| 155 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); | 155 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); |
| 156 const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 156 const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
| 157 const FilePath::CharType kShortcutsDatabaseName[] = FPL("Shortcuts"); |
| 157 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); | 158 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); |
| 158 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 159 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 159 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 160 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
| 160 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 161 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| 161 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 162 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
| 162 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); | 163 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); |
| 163 const FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); | 164 const FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); |
| 164 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); | 165 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); |
| 165 | 166 |
| 166 // File name of the Pepper Flash plugin on different platforms. | 167 // File name of the Pepper Flash plugin on different platforms. |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; | 214 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; |
| 214 const wchar_t kMetroNavigationAndSearchMessage[] = | 215 const wchar_t kMetroNavigationAndSearchMessage[] = |
| 215 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 216 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
| 216 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 217 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
| 217 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 218 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
| 218 #endif | 219 #endif |
| 219 | 220 |
| 220 } // namespace chrome | 221 } // namespace chrome |
| 221 | 222 |
| 222 #undef FPL | 223 #undef FPL |
| OLD | NEW |