| 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 "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "chrome/common/chrome_version.h" | 8 #include "chrome/common/chrome_version.h" |
| 9 | 9 |
| 10 #define FPL FILE_PATH_LITERAL | 10 #define FPL FILE_PATH_LITERAL |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 FPL("SingletonCookie"); | 168 FPL("SingletonCookie"); |
| 169 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 169 const base::FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 170 const base::FilePath::CharType kSingletonSocketFilename[] = | 170 const base::FilePath::CharType kSingletonSocketFilename[] = |
| 171 FPL("SingletonSocket"); | 171 FPL("SingletonSocket"); |
| 172 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = | 172 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = |
| 173 FPL("Managed Mode Settings"); | 173 FPL("Managed Mode Settings"); |
| 174 const base::FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 174 const base::FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| 175 const base::FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); | 175 const base::FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); |
| 176 | 176 |
| 177 #if defined(OS_WIN) | 177 #if defined(OS_WIN) |
| 178 const base::FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 178 const base::FilePath::StringType kJumpListIconDirname = FPL("JumpListIcons"); |
| 179 #endif | 179 #endif |
| 180 | 180 |
| 181 // File name of the Pepper Flash plugin on different platforms. | 181 // File name of the Pepper Flash plugin on different platforms. |
| 182 const base::FilePath::CharType kPepperFlashPluginFilename[] = | 182 const base::FilePath::CharType kPepperFlashPluginFilename[] = |
| 183 #if defined(OS_MACOSX) | 183 #if defined(OS_MACOSX) |
| 184 FPL("PepperFlashPlayer.plugin"); | 184 FPL("PepperFlashPlayer.plugin"); |
| 185 #elif defined(OS_WIN) | 185 #elif defined(OS_WIN) |
| 186 FPL("pepflashplayer.dll"); | 186 FPL("pepflashplayer.dll"); |
| 187 #else // OS_LINUX, etc. | 187 #else // OS_LINUX, etc. |
| 188 FPL("libpepflashplayer.so"); | 188 FPL("libpepflashplayer.so"); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 210 // user can select for different file types. | 210 // user can select for different file types. |
| 211 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 211 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 212 const char kApplicationClientIDStringForAVScanning[] = | 212 const char kApplicationClientIDStringForAVScanning[] = |
| 213 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 213 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 214 | 214 |
| 215 const size_t kMaxMetaTagAttributeLength = 2000; | 215 const size_t kMaxMetaTagAttributeLength = 2000; |
| 216 | 216 |
| 217 } // namespace chrome | 217 } // namespace chrome |
| 218 | 218 |
| 219 #undef FPL | 219 #undef FPL |
| OLD | NEW |