| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 #if defined(OS_MACOSX) | 372 #if defined(OS_MACOSX) |
| 373 extern const char kShowUpdatePromotionInfoBar[]; | 373 extern const char kShowUpdatePromotionInfoBar[]; |
| 374 #endif | 374 #endif |
| 375 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 375 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 376 extern const char kUseCustomChromeFrame[]; | 376 extern const char kUseCustomChromeFrame[]; |
| 377 #endif | 377 #endif |
| 378 extern const char kBackShortcutBubbleShownCount[]; | 378 extern const char kBackShortcutBubbleShownCount[]; |
| 379 #if BUILDFLAG(ENABLE_PLUGINS) | 379 #if BUILDFLAG(ENABLE_PLUGINS) |
| 380 extern const char kContentSettingsPluginWhitelist[]; | 380 extern const char kContentSettingsPluginWhitelist[]; |
| 381 #endif | 381 #endif |
| 382 #if !defined(OS_ANDROID) |
| 382 extern const char kPartitionDefaultZoomLevel[]; | 383 extern const char kPartitionDefaultZoomLevel[]; |
| 383 extern const char kPartitionPerHostZoomLevels[]; | 384 extern const char kPartitionPerHostZoomLevels[]; |
| 384 | 385 |
| 385 #if !defined(OS_ANDROID) | |
| 386 extern const char kPinnedTabs[]; | 386 extern const char kPinnedTabs[]; |
| 387 #endif | 387 #endif // !defined(OS_ANDROID) |
| 388 | 388 |
| 389 extern const char kDisable3DAPIs[]; | 389 extern const char kDisable3DAPIs[]; |
| 390 extern const char kEnableDeprecatedWebPlatformFeatures[]; | 390 extern const char kEnableDeprecatedWebPlatformFeatures[]; |
| 391 extern const char kEnableHyperlinkAuditing[]; | 391 extern const char kEnableHyperlinkAuditing[]; |
| 392 extern const char kEnableReferrers[]; | 392 extern const char kEnableReferrers[]; |
| 393 extern const char kEnableDoNotTrack[]; | 393 extern const char kEnableDoNotTrack[]; |
| 394 | 394 |
| 395 extern const char kImportAutofillFormData[]; | 395 extern const char kImportAutofillFormData[]; |
| 396 extern const char kImportBookmarks[]; | 396 extern const char kImportBookmarks[]; |
| 397 extern const char kImportHistory[]; | 397 extern const char kImportHistory[]; |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; | 914 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; |
| 915 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; | 915 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; |
| 916 | 916 |
| 917 #if defined(OS_ANDROID) | 917 #if defined(OS_ANDROID) |
| 918 extern const char kClipboardLastModifiedTime[]; | 918 extern const char kClipboardLastModifiedTime[]; |
| 919 #endif | 919 #endif |
| 920 | 920 |
| 921 } // namespace prefs | 921 } // namespace prefs |
| 922 | 922 |
| 923 #endif // CHROME_COMMON_PREF_NAMES_H_ | 923 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |