| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 | 335 |
| 336 extern const char kExtensionInstallAllowList[]; | 336 extern const char kExtensionInstallAllowList[]; |
| 337 extern const char kExtensionInstallDenyList[]; | 337 extern const char kExtensionInstallDenyList[]; |
| 338 | 338 |
| 339 extern const char kExtensionInstallForceList[]; | 339 extern const char kExtensionInstallForceList[]; |
| 340 | 340 |
| 341 extern const char kExtensionBlacklistUpdateVersion[]; | 341 extern const char kExtensionBlacklistUpdateVersion[]; |
| 342 | 342 |
| 343 extern const char kExtensionSidebarWidth[]; | 343 extern const char kExtensionSidebarWidth[]; |
| 344 | 344 |
| 345 extern const char kNTPTipsResourceServer[]; |
| 346 |
| 345 extern const char kNTPMostVisitedURLsBlacklist[]; | 347 extern const char kNTPMostVisitedURLsBlacklist[]; |
| 346 extern const char kNTPMostVisitedPinnedURLs[]; | 348 extern const char kNTPMostVisitedPinnedURLs[]; |
| 347 extern const char kNTPWebResourceCache[]; | 349 extern const char kNTPWebResourceCache[]; |
| 348 extern const char kNTPWebResourceCacheUpdate[]; | 350 extern const char kNTPWebResourceCacheUpdate[]; |
| 349 extern const char kNTPTipsResourceServer[]; | 351 extern const char kNTPWebResourceServer[]; |
| 350 extern const char kNTPLogoResourceServer[]; | 352 extern const char kNTPDateResourceServer[]; |
| 351 extern const char kNTPShownSections[]; | 353 extern const char kNTPShownSections[]; |
| 352 extern const char kNTPPrefVersion[]; | 354 extern const char kNTPPrefVersion[]; |
| 353 extern const char kNTPCustomLogoStart[]; | 355 extern const char kNTPCustomLogoStart[]; |
| 354 extern const char kNTPCustomLogoEnd[]; | 356 extern const char kNTPCustomLogoEnd[]; |
| 357 extern const char kNTPPromoStart[]; |
| 358 extern const char kNTPPromoEnd[]; |
| 359 extern const char kNTPPromoLine[]; |
| 360 extern const char kNTPPromoClosed[]; |
| 355 | 361 |
| 356 extern const char kDevToolsDisabled[]; | 362 extern const char kDevToolsDisabled[]; |
| 357 extern const char kDevToolsOpenDocked[]; | 363 extern const char kDevToolsOpenDocked[]; |
| 358 extern const char kDevToolsSplitLocation[]; | 364 extern const char kDevToolsSplitLocation[]; |
| 359 extern const char kSyncSessions[]; | 365 extern const char kSyncSessions[]; |
| 360 | 366 |
| 361 extern const char kSyncLastSyncedTime[]; | 367 extern const char kSyncLastSyncedTime[]; |
| 362 extern const char kSyncHasSetupCompleted[]; | 368 extern const char kSyncHasSetupCompleted[]; |
| 363 extern const char kKeepEverythingSynced[]; | 369 extern const char kKeepEverythingSynced[]; |
| 364 extern const char kSyncBookmarks[]; | 370 extern const char kSyncBookmarks[]; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 extern const char kEnableAuthNegotiatePort[]; | 428 extern const char kEnableAuthNegotiatePort[]; |
| 423 extern const char kAuthServerWhitelist[]; | 429 extern const char kAuthServerWhitelist[]; |
| 424 extern const char kAuthNegotiateDelegateWhitelist[]; | 430 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 425 extern const char kGSSAPILibraryName[]; | 431 extern const char kGSSAPILibraryName[]; |
| 426 | 432 |
| 427 extern const char kKnownBackgroundPages[]; | 433 extern const char kKnownBackgroundPages[]; |
| 428 | 434 |
| 429 } // namespace prefs | 435 } // namespace prefs |
| 430 | 436 |
| 431 #endif // CHROME_COMMON_PREF_NAMES_H_ | 437 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |