| 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 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 kShortcutsDatabaseName[] = FPL("Shortcuts"); |
| 158 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); | 158 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); |
| 159 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 159 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 160 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 160 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
| 161 const FilePath::CharType kSyncCredentialsFilename[] = FPL("Sync Credentials"); |
| 161 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 162 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| 162 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 163 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
| 163 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); | 164 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); |
| 164 const FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); | 165 const FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); |
| 165 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); | 166 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); |
| 166 | 167 |
| 167 // File name of the Pepper Flash plugin on different platforms. | 168 // File name of the Pepper Flash plugin on different platforms. |
| 168 const FilePath::CharType kPepperFlashPluginFilename[] = | 169 const FilePath::CharType kPepperFlashPluginFilename[] = |
| 169 #if defined(OS_MACOSX) | 170 #if defined(OS_MACOSX) |
| 170 FPL("PepperFlashPlayer.plugin"); | 171 FPL("PepperFlashPlayer.plugin"); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; | 213 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; |
| 213 const wchar_t kMetroNavigationAndSearchMessage[] = | 214 const wchar_t kMetroNavigationAndSearchMessage[] = |
| 214 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 215 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
| 215 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 216 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
| 216 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 217 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
| 217 #endif | 218 #endif |
| 218 | 219 |
| 219 } // namespace chrome | 220 } // namespace chrome |
| 220 | 221 |
| 221 #undef FPL | 222 #undef FPL |
| OLD | NEW |