| 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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 #if defined(OS_ANDROID) | 528 #if defined(OS_ANDROID) |
| 529 extern const char kNtpCollapsedCurrentlyOpenTabs[]; | 529 extern const char kNtpCollapsedCurrentlyOpenTabs[]; |
| 530 #endif | 530 #endif |
| 531 extern const char kNtpCollapsedForeignSessions[]; | 531 extern const char kNtpCollapsedForeignSessions[]; |
| 532 #if defined(OS_ANDROID) | 532 #if defined(OS_ANDROID) |
| 533 extern const char kNtpCollapsedRecentlyClosedTabs[]; | 533 extern const char kNtpCollapsedRecentlyClosedTabs[]; |
| 534 extern const char kNtpCollapsedSnapshotDocument[]; | 534 extern const char kNtpCollapsedSnapshotDocument[]; |
| 535 extern const char kNtpCollapsedSyncPromo[]; | 535 extern const char kNtpCollapsedSyncPromo[]; |
| 536 #endif | 536 #endif |
| 537 extern const char kNtpShownPage[]; | 537 extern const char kNtpShownPage[]; |
| 538 #if defined(OS_ANDROID) |
| 539 extern const char kNTPSuggestionsURL[]; |
| 540 extern const char kNTPSuggestionsIsPersonal[]; |
| 541 #endif |
| 538 | 542 |
| 539 extern const char kDevToolsAdbKey[]; | 543 extern const char kDevToolsAdbKey[]; |
| 540 extern const char kDevToolsDisabled[]; | 544 extern const char kDevToolsDisabled[]; |
| 541 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; | 545 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; |
| 542 extern const char kDevToolsEditedFiles[]; | 546 extern const char kDevToolsEditedFiles[]; |
| 543 extern const char kDevToolsFileSystemPaths[]; | 547 extern const char kDevToolsFileSystemPaths[]; |
| 544 extern const char kDevToolsPortForwardingEnabled[]; | 548 extern const char kDevToolsPortForwardingEnabled[]; |
| 545 extern const char kDevToolsPortForwardingDefaultSet[]; | 549 extern const char kDevToolsPortForwardingDefaultSet[]; |
| 546 extern const char kDevToolsPortForwardingConfig[]; | 550 extern const char kDevToolsPortForwardingConfig[]; |
| 547 extern const char kDevToolsPreferences[]; | 551 extern const char kDevToolsPreferences[]; |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 | 813 |
| 810 #if defined(ENABLE_EXTENSIONS) | 814 #if defined(ENABLE_EXTENSIONS) |
| 811 extern const char kAnimationPolicy[]; | 815 extern const char kAnimationPolicy[]; |
| 812 #endif | 816 #endif |
| 813 | 817 |
| 814 extern const char kBackgroundTracingLastUpload[]; | 818 extern const char kBackgroundTracingLastUpload[]; |
| 815 | 819 |
| 816 } // namespace prefs | 820 } // namespace prefs |
| 817 | 821 |
| 818 #endif // CHROME_COMMON_PREF_NAMES_H_ | 822 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |