| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 extern const char kNumBookmarksOnBookmarkBar[]; | 291 extern const char kNumBookmarksOnBookmarkBar[]; |
| 292 extern const char kNumFoldersOnBookmarkBar[]; | 292 extern const char kNumFoldersOnBookmarkBar[]; |
| 293 extern const char kNumBookmarksInOtherBookmarkFolder[]; | 293 extern const char kNumBookmarksInOtherBookmarkFolder[]; |
| 294 extern const char kNumFoldersInOtherBookmarkFolder[]; | 294 extern const char kNumFoldersInOtherBookmarkFolder[]; |
| 295 | 295 |
| 296 extern const char kNumKeywords[]; | 296 extern const char kNumKeywords[]; |
| 297 | 297 |
| 298 extern const char kDisableVideoAndChat[]; | 298 extern const char kDisableVideoAndChat[]; |
| 299 | 299 |
| 300 extern const char kDisableExtensions[]; | 300 extern const char kDisableExtensions[]; |
| 301 extern const char kShowExtensionShelf[]; | |
| 302 extern const char kBrowserActionContainerWidth[]; | 301 extern const char kBrowserActionContainerWidth[]; |
| 303 | 302 |
| 304 extern const char kLastExtensionsUpdateCheck[]; | 303 extern const char kLastExtensionsUpdateCheck[]; |
| 305 extern const char kNextExtensionsUpdateCheck[]; | 304 extern const char kNextExtensionsUpdateCheck[]; |
| 306 | 305 |
| 307 extern const char kExtensionInstallAllowList[]; | 306 extern const char kExtensionInstallAllowList[]; |
| 308 extern const char kExtensionInstallDenyList[]; | 307 extern const char kExtensionInstallDenyList[]; |
| 309 | 308 |
| 310 extern const char kExtensionBlacklistUpdateVersion[]; | 309 extern const char kExtensionBlacklistUpdateVersion[]; |
| 311 | 310 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 extern const char kProxyAutoDetect[]; | 354 extern const char kProxyAutoDetect[]; |
| 356 extern const char kProxyServer[]; | 355 extern const char kProxyServer[]; |
| 357 extern const char kProxyPacUrl[]; | 356 extern const char kProxyPacUrl[]; |
| 358 extern const char kProxyBypassList[]; | 357 extern const char kProxyBypassList[]; |
| 359 | 358 |
| 360 extern const char kRegisteredBackgroundContents[]; | 359 extern const char kRegisteredBackgroundContents[]; |
| 361 | 360 |
| 362 } // namespace prefs | 361 } // namespace prefs |
| 363 | 362 |
| 364 #endif // CHROME_COMMON_PREF_NAMES_H_ | 363 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |