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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 extern const char kNTPWebResourceServer[]; | 362 extern const char kNTPWebResourceServer[]; |
363 extern const char kNTPDateResourceServer[]; | 363 extern const char kNTPDateResourceServer[]; |
364 extern const char kNTPShownSections[]; | 364 extern const char kNTPShownSections[]; |
365 extern const char kNTPPrefVersion[]; | 365 extern const char kNTPPrefVersion[]; |
366 extern const char kNTPCustomLogoStart[]; | 366 extern const char kNTPCustomLogoStart[]; |
367 extern const char kNTPCustomLogoEnd[]; | 367 extern const char kNTPCustomLogoEnd[]; |
368 extern const char kNTPPromoStart[]; | 368 extern const char kNTPPromoStart[]; |
369 extern const char kNTPPromoEnd[]; | 369 extern const char kNTPPromoEnd[]; |
370 extern const char kNTPPromoLine[]; | 370 extern const char kNTPPromoLine[]; |
371 extern const char kNTPPromoClosed[]; | 371 extern const char kNTPPromoClosed[]; |
| 372 extern const char kNTPPromoGroup[]; |
| 373 extern const char kNTPPromoGroupTimeSlice[]; |
| 374 extern const char kNTPPromoBuild[]; |
372 | 375 |
373 extern const char kDevToolsDisabled[]; | 376 extern const char kDevToolsDisabled[]; |
374 extern const char kDevToolsOpenDocked[]; | 377 extern const char kDevToolsOpenDocked[]; |
375 extern const char kDevToolsSplitLocation[]; | 378 extern const char kDevToolsSplitLocation[]; |
376 extern const char kSyncSessions[]; | 379 extern const char kSyncSessions[]; |
377 | 380 |
378 extern const char kSyncLastSyncedTime[]; | 381 extern const char kSyncLastSyncedTime[]; |
379 extern const char kSyncHasSetupCompleted[]; | 382 extern const char kSyncHasSetupCompleted[]; |
380 extern const char kKeepEverythingSynced[]; | 383 extern const char kKeepEverythingSynced[]; |
381 extern const char kSyncBookmarks[]; | 384 extern const char kSyncBookmarks[]; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 extern const char kAuthNegotiateDelegateWhitelist[]; | 445 extern const char kAuthNegotiateDelegateWhitelist[]; |
443 extern const char kGSSAPILibraryName[]; | 446 extern const char kGSSAPILibraryName[]; |
444 | 447 |
445 extern const char kKnownBackgroundPages[]; | 448 extern const char kKnownBackgroundPages[]; |
446 | 449 |
447 extern const char kDisable3DAPIs[]; | 450 extern const char kDisable3DAPIs[]; |
448 | 451 |
449 } // namespace prefs | 452 } // namespace prefs |
450 | 453 |
451 #endif // CHROME_COMMON_PREF_NAMES_H_ | 454 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |