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