Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: chrome/common/pref_names.h

Issue 2760403003: Remove enable_media_router. (Closed)
Patch Set: . Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/extensions/extension_constants.cc ('k') | chrome/common/pref_names.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 extern const char kDevicePolicyRefreshRate[]; 741 extern const char kDevicePolicyRefreshRate[];
742 742
743 extern const char kFactoryResetRequested[]; 743 extern const char kFactoryResetRequested[];
744 extern const char kDebuggingFeaturesRequested[]; 744 extern const char kDebuggingFeaturesRequested[];
745 745
746 #if defined(OS_CHROMEOS) 746 #if defined(OS_CHROMEOS)
747 extern const char kResolveDeviceTimezoneByGeolocation[]; 747 extern const char kResolveDeviceTimezoneByGeolocation[];
748 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; 748 extern const char kSystemTimezoneAutomaticDetectionPolicy[];
749 #endif // defined(OS_CHROMEOS) 749 #endif // defined(OS_CHROMEOS)
750 750
751 #if defined(ENABLE_MEDIA_ROUTER)
752 extern const char kEnableMediaRouter[]; 751 extern const char kEnableMediaRouter[];
753 #if !defined(OS_ANDROID) 752 #if !defined(OS_ANDROID)
754 extern const char kShowCastIconInToolbar[]; 753 extern const char kShowCastIconInToolbar[];
755 #endif // !defined(OS_ANDROID) 754 #endif // !defined(OS_ANDROID)
756 #endif // defined(ENABLE_MEDIA_ROUTER)
757 755
758 #if !defined(OS_ANDROID) 756 #if !defined(OS_ANDROID)
759 extern const char kAttemptedToEnableAutoupdate[]; 757 extern const char kAttemptedToEnableAutoupdate[];
760 758
761 extern const char kMediaGalleriesUniqueId[]; 759 extern const char kMediaGalleriesUniqueId[];
762 extern const char kMediaGalleriesRememberedGalleries[]; 760 extern const char kMediaGalleriesRememberedGalleries[];
763 #endif // !defined(OS_ANDROID) 761 #endif // !defined(OS_ANDROID)
764 762
765 #if defined(USE_AURA) 763 #if defined(USE_AURA)
766 extern const char kShelfAlignment[]; 764 extern const char kShelfAlignment[];
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 854
857 extern const char kBackgroundTracingLastUpload[]; 855 extern const char kBackgroundTracingLastUpload[];
858 856
859 extern const char kAllowDinosaurEasterEgg[]; 857 extern const char kAllowDinosaurEasterEgg[];
860 858
861 #if defined(OS_ANDROID) 859 #if defined(OS_ANDROID)
862 extern const char kClickedUpdateMenuItem[]; 860 extern const char kClickedUpdateMenuItem[];
863 extern const char kLatestVersionWhenClickedUpdateMenuItem[]; 861 extern const char kLatestVersionWhenClickedUpdateMenuItem[];
864 #endif 862 #endif
865 863
866 #if defined(ENABLE_MEDIA_ROUTER)
867 extern const char kMediaRouterCloudServicesPrefSet[]; 864 extern const char kMediaRouterCloudServicesPrefSet[];
868 extern const char kMediaRouterEnableCloudServices[]; 865 extern const char kMediaRouterEnableCloudServices[];
869 extern const char kMediaRouterFirstRunFlowAcknowledged[]; 866 extern const char kMediaRouterFirstRunFlowAcknowledged[];
870 extern const char kMediaRouterTabMirroringSources[]; 867 extern const char kMediaRouterTabMirroringSources[];
871 #endif
872 868
873 extern const char kOriginTrialPublicKey[]; 869 extern const char kOriginTrialPublicKey[];
874 extern const char kOriginTrialDisabledFeatures[]; 870 extern const char kOriginTrialDisabledFeatures[];
875 extern const char kOriginTrialDisabledTokens[]; 871 extern const char kOriginTrialDisabledTokens[];
876 872
877 extern const char kComponentUpdatesEnabled[]; 873 extern const char kComponentUpdatesEnabled[];
878 874
879 #if defined(OS_ANDROID) 875 #if defined(OS_ANDROID)
880 extern const char kLocationSettingsBackoffLevelDSE[]; 876 extern const char kLocationSettingsBackoffLevelDSE[];
881 extern const char kLocationSettingsBackoffLevelDefault[]; 877 extern const char kLocationSettingsBackoffLevelDefault[];
(...skipping 28 matching lines...) Expand all
910 extern const char kHistoryPageIOSPromoDismissed[]; 906 extern const char kHistoryPageIOSPromoDismissed[];
911 #endif 907 #endif
912 908
913 extern const char kSettingsResetPromptPromptWave[]; 909 extern const char kSettingsResetPromptPromptWave[];
914 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; 910 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[];
915 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; 911 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[];
916 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; 912 extern const char kSettingsResetPromptLastTriggeredForHomepage[];
917 } // namespace prefs 913 } // namespace prefs
918 914
919 #endif // CHROME_COMMON_PREF_NAMES_H_ 915 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_constants.cc ('k') | chrome/common/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698