| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 extern const char kNtpCollapsedSnapshotDocument[]; | 560 extern const char kNtpCollapsedSnapshotDocument[]; |
| 561 extern const char kNtpCollapsedSyncPromo[]; | 561 extern const char kNtpCollapsedSyncPromo[]; |
| 562 extern const char kContentSuggestionsConsecutiveIgnoredPrefName[]; | 562 extern const char kContentSuggestionsConsecutiveIgnoredPrefName[]; |
| 563 extern const char kContentSuggestionsNotificationsSentDay[]; | 563 extern const char kContentSuggestionsNotificationsSentDay[]; |
| 564 extern const char kContentSuggestionsNotificationsSentCount[]; | 564 extern const char kContentSuggestionsNotificationsSentCount[]; |
| 565 #endif // defined(OS_ANDROID) | 565 #endif // defined(OS_ANDROID) |
| 566 extern const char kNtpShownPage[]; | 566 extern const char kNtpShownPage[]; |
| 567 | 567 |
| 568 extern const char kDevToolsAdbKey[]; | 568 extern const char kDevToolsAdbKey[]; |
| 569 extern const char kDevToolsDisabled[]; | 569 extern const char kDevToolsDisabled[]; |
| 570 extern const char kDevToolsDiscoverTCPTargetsEnabled[]; |
| 570 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; | 571 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; |
| 571 extern const char kDevToolsEditedFiles[]; | 572 extern const char kDevToolsEditedFiles[]; |
| 572 extern const char kDevToolsFileSystemPaths[]; | 573 extern const char kDevToolsFileSystemPaths[]; |
| 573 extern const char kDevToolsPortForwardingEnabled[]; | 574 extern const char kDevToolsPortForwardingEnabled[]; |
| 574 extern const char kDevToolsPortForwardingDefaultSet[]; | 575 extern const char kDevToolsPortForwardingDefaultSet[]; |
| 575 extern const char kDevToolsPortForwardingConfig[]; | 576 extern const char kDevToolsPortForwardingConfig[]; |
| 576 extern const char kDevToolsPreferences[]; | 577 extern const char kDevToolsPreferences[]; |
| 577 extern const char kDevToolsDiscoverTCPTargetsEnabled[]; | 578 extern const char kDevToolsSilentManagedDebuggerAPIEnabled[]; |
| 578 extern const char kDevToolsTCPDiscoveryConfig[]; | 579 extern const char kDevToolsTCPDiscoveryConfig[]; |
| 579 #if defined(OS_ANDROID) | 580 #if defined(OS_ANDROID) |
| 580 extern const char kDevToolsRemoteEnabled[]; | 581 extern const char kDevToolsRemoteEnabled[]; |
| 581 #endif | 582 #endif |
| 582 | 583 |
| 583 extern const char kGoogleServicesPasswordHash[]; | 584 extern const char kGoogleServicesPasswordHash[]; |
| 584 | 585 |
| 585 #if !defined(OS_ANDROID) | 586 #if !defined(OS_ANDROID) |
| 586 extern const char kSignInPromoStartupCount[]; | 587 extern const char kSignInPromoStartupCount[]; |
| 587 extern const char kSignInPromoUserSkipped[]; | 588 extern const char kSignInPromoUserSkipped[]; |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 extern const char kBookmarksBubbleIOSPromoDismissed[]; | 890 extern const char kBookmarksBubbleIOSPromoDismissed[]; |
| 890 extern const char kNumberBookmarksFootNoteIOSPromoShown[]; | 891 extern const char kNumberBookmarksFootNoteIOSPromoShown[]; |
| 891 extern const char kBookmarksFootNoteIOSPromoDismissed[]; | 892 extern const char kBookmarksFootNoteIOSPromoDismissed[]; |
| 892 extern const char kNumberHistoryPageIOSPromoShown[]; | 893 extern const char kNumberHistoryPageIOSPromoShown[]; |
| 893 extern const char kHistoryPageIOSPromoDismissed[]; | 894 extern const char kHistoryPageIOSPromoDismissed[]; |
| 894 #endif | 895 #endif |
| 895 | 896 |
| 896 } // namespace prefs | 897 } // namespace prefs |
| 897 | 898 |
| 898 #endif // CHROME_COMMON_PREF_NAMES_H_ | 899 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |