| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 extern const char kNTPMostVisitedURLsBlacklist[]; | 374 extern const char kNTPMostVisitedURLsBlacklist[]; |
| 375 extern const char kNTPMostVisitedPinnedURLs[]; | 375 extern const char kNTPMostVisitedPinnedURLs[]; |
| 376 extern const char kNTPPromoResourceCache[]; | 376 extern const char kNTPPromoResourceCache[]; |
| 377 extern const char kNTPPromoResourceCacheUpdate[]; | 377 extern const char kNTPPromoResourceCacheUpdate[]; |
| 378 extern const char kNTPPromoResourceServer[]; | 378 extern const char kNTPPromoResourceServer[]; |
| 379 extern const char kNTPDateResourceServer[]; | 379 extern const char kNTPDateResourceServer[]; |
| 380 extern const char kNTPShownSections[]; | 380 extern const char kNTPShownSections[]; |
| 381 extern const char kNTPPrefVersion[]; | 381 extern const char kNTPPrefVersion[]; |
| 382 extern const char kNTPCustomLogoStart[]; | 382 extern const char kNTPCustomLogoStart[]; |
| 383 extern const char kNTPCustomLogoEnd[]; | 383 extern const char kNTPCustomLogoEnd[]; |
| 384 extern const char kNTPPromoVersion[]; |
| 385 extern const char kNTPPromoLocale[]; |
| 384 extern const char kNTPPromoStart[]; | 386 extern const char kNTPPromoStart[]; |
| 385 extern const char kNTPPromoEnd[]; | 387 extern const char kNTPPromoEnd[]; |
| 386 extern const char kNTPPromoLine[]; | 388 extern const char kNTPPromoLine[]; |
| 387 extern const char kNTPPromoClosed[]; | 389 extern const char kNTPPromoClosed[]; |
| 388 extern const char kNTPPromoGroup[]; | 390 extern const char kNTPPromoGroup[]; |
| 389 extern const char kNTPPromoGroupTimeSlice[]; | 391 extern const char kNTPPromoGroupTimeSlice[]; |
| 390 extern const char kNTPPromoBuild[]; | 392 extern const char kNTPPromoBuild[]; |
| 393 extern const char kNTPWebStorePromoLastId[]; |
| 394 extern const char kNTPWebStorePromoId[]; |
| 395 extern const char kNTPWebStorePromoHeader[]; |
| 396 extern const char kNTPWebStorePromoButton[]; |
| 397 extern const char kNTPWebStorePromoLink[]; |
| 398 extern const char kNTPWebStorePromoExpire[]; |
| 391 | 399 |
| 392 extern const char kGpuBlacklist[]; | 400 extern const char kGpuBlacklist[]; |
| 393 extern const char kGpuBlacklistUpdate[]; | 401 extern const char kGpuBlacklistUpdate[]; |
| 394 | 402 |
| 395 extern const char kDevToolsDisabled[]; | 403 extern const char kDevToolsDisabled[]; |
| 396 extern const char kDevToolsOpenDocked[]; | 404 extern const char kDevToolsOpenDocked[]; |
| 397 extern const char kDevToolsSplitLocation[]; | 405 extern const char kDevToolsSplitLocation[]; |
| 398 extern const char kSyncSessions[]; | 406 extern const char kSyncSessions[]; |
| 399 | 407 |
| 400 extern const char kSyncLastSyncedTime[]; | 408 extern const char kSyncLastSyncedTime[]; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 extern const char kAuthNegotiateDelegateWhitelist[]; | 481 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 474 extern const char kGSSAPILibraryName[]; | 482 extern const char kGSSAPILibraryName[]; |
| 475 | 483 |
| 476 extern const char kKnownBackgroundPages[]; | 484 extern const char kKnownBackgroundPages[]; |
| 477 | 485 |
| 478 extern const char kRegisteredProtocolHandlers[]; | 486 extern const char kRegisteredProtocolHandlers[]; |
| 479 | 487 |
| 480 } // namespace prefs | 488 } // namespace prefs |
| 481 | 489 |
| 482 #endif // CHROME_COMMON_PREF_NAMES_H_ | 490 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |