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/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 | 8 |
9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
10 | 10 |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 FPL("SingletonCookie"); | 189 FPL("SingletonCookie"); |
190 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 190 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
191 const base::FilePath::CharType kSingletonSocketFilename[] = | 191 const base::FilePath::CharType kSingletonSocketFilename[] = |
192 FPL("SingletonSocket"); | 192 FPL("SingletonSocket"); |
193 const base::FilePath::CharType kSyncCredentialsFilename[] = | 193 const base::FilePath::CharType kSyncCredentialsFilename[] = |
194 FPL("Sync Credentials"); | 194 FPL("Sync Credentials"); |
195 const base::FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 195 const base::FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
196 const base::FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 196 const base::FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
197 const base::FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); | 197 const base::FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); |
198 const base::FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); | 198 const base::FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); |
199 const base::FilePath::CharType kWebDataFilename[] = FPL("Web Data"); | |
200 | 199 |
201 // File name of the Pepper Flash plugin on different platforms. | 200 // File name of the Pepper Flash plugin on different platforms. |
202 const base::FilePath::CharType kPepperFlashPluginFilename[] = | 201 const base::FilePath::CharType kPepperFlashPluginFilename[] = |
203 #if defined(OS_MACOSX) | 202 #if defined(OS_MACOSX) |
204 FPL("PepperFlashPlayer.plugin"); | 203 FPL("PepperFlashPlayer.plugin"); |
205 #elif defined(OS_WIN) | 204 #elif defined(OS_WIN) |
206 FPL("pepflashplayer.dll"); | 205 FPL("pepflashplayer.dll"); |
207 #else // OS_LINUX, etc. | 206 #else // OS_LINUX, etc. |
208 FPL("libpepflashplayer.so"); | 207 FPL("libpepflashplayer.so"); |
209 #endif | 208 #endif |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 253 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
255 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 254 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
256 const wchar_t kMetroRegistryPath[] = | 255 const wchar_t kMetroRegistryPath[] = |
257 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; | 256 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; |
258 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 257 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
259 #endif | 258 #endif |
260 | 259 |
261 } // namespace chrome | 260 } // namespace chrome |
262 | 261 |
263 #undef FPL | 262 #undef FPL |
OLD | NEW |