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