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 const base::FilePath::CharType kSingletonSocketFilename[] = | 189 const base::FilePath::CharType kSingletonSocketFilename[] = |
190 FPL("SingletonSocket"); | 190 FPL("SingletonSocket"); |
191 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = | 191 const base::FilePath::CharType kSupervisedUserSettingsFilename[] = |
192 FPL("Managed Mode Settings"); | 192 FPL("Managed Mode Settings"); |
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 kZoomLevelPreferencesFilename[] = |
| 200 FPL("ZoomLevelPreferences"); |
199 | 201 |
200 // File name of the Pepper Flash plugin on different platforms. | 202 // File name of the Pepper Flash plugin on different platforms. |
201 const base::FilePath::CharType kPepperFlashPluginFilename[] = | 203 const base::FilePath::CharType kPepperFlashPluginFilename[] = |
202 #if defined(OS_MACOSX) | 204 #if defined(OS_MACOSX) |
203 FPL("PepperFlashPlayer.plugin"); | 205 FPL("PepperFlashPlayer.plugin"); |
204 #elif defined(OS_WIN) | 206 #elif defined(OS_WIN) |
205 FPL("pepflashplayer.dll"); | 207 FPL("pepflashplayer.dll"); |
206 #else // OS_LINUX, etc. | 208 #else // OS_LINUX, etc. |
207 FPL("libpepflashplayer.so"); | 209 FPL("libpepflashplayer.so"); |
208 #endif | 210 #endif |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 const char kApplicationClientIDStringForAVScanning[] = | 268 const char kApplicationClientIDStringForAVScanning[] = |
267 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 269 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
268 | 270 |
269 #if defined(OS_ANDROID) | 271 #if defined(OS_ANDROID) |
270 const size_t kMaxMetaTagAttributeLength = 2000; | 272 const size_t kMaxMetaTagAttributeLength = 2000; |
271 #endif | 273 #endif |
272 | 274 |
273 } // namespace chrome | 275 } // namespace chrome |
274 | 276 |
275 #undef FPL | 277 #undef FPL |
OLD | NEW |