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

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2930323003: Show client placeholders for Server LoFi images. (Closed)
Patch Set: rebase flag_descriptions.cc Created 3 years, 5 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/browser/about_flags.cc ('k') | chrome/browser/flag_descriptions.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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 177
178 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; 178 extern const char kEnableAutofillCreditCardUploadCvcPromptName[];
179 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; 179 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[];
180 180
181 extern const char kEnableBrotliName[]; 181 extern const char kEnableBrotliName[];
182 extern const char kEnableBrotliDescription[]; 182 extern const char kEnableBrotliDescription[];
183 183
184 extern const char kEnableClearBrowsingDataCountersName[]; 184 extern const char kEnableClearBrowsingDataCountersName[];
185 extern const char kEnableClearBrowsingDataCountersDescription[]; 185 extern const char kEnableClearBrowsingDataCountersDescription[];
186 186
187 extern const char kEnableClientLoFiName[];
188 extern const char kEnableClientLoFiDescription[];
189
187 extern const char kEnableDataReductionProxyLitePageName[]; 190 extern const char kEnableDataReductionProxyLitePageName[];
188 extern const char kEnableDataReductionProxyLitePageDescription[]; 191 extern const char kEnableDataReductionProxyLitePageDescription[];
189 192
190 extern const char kDataReductionProxyServerAlternative[]; 193 extern const char kDataReductionProxyServerAlternative[];
191 extern const char kEnableDataReductionProxyServerExperimentName[]; 194 extern const char kEnableDataReductionProxyServerExperimentName[];
192 extern const char kEnableDataReductionProxyServerExperimentDescription[]; 195 extern const char kEnableDataReductionProxyServerExperimentDescription[];
193 196
194 extern const char kEnableDataReductionProxySavingsPromoName[]; 197 extern const char kEnableDataReductionProxySavingsPromoName[];
195 extern const char kEnableDataReductionProxySavingsPromoDescription[]; 198 extern const char kEnableDataReductionProxySavingsPromoDescription[];
196 199
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 891
889 extern const char kEnableAndroidPayIntegrationV1Name[]; 892 extern const char kEnableAndroidPayIntegrationV1Name[];
890 extern const char kEnableAndroidPayIntegrationV1Description[]; 893 extern const char kEnableAndroidPayIntegrationV1Description[];
891 894
892 extern const char kEnableAndroidPayIntegrationV2Name[]; 895 extern const char kEnableAndroidPayIntegrationV2Name[];
893 extern const char kEnableAndroidPayIntegrationV2Description[]; 896 extern const char kEnableAndroidPayIntegrationV2Description[];
894 897
895 extern const char kEnableAndroidSpellcheckerDescription[]; 898 extern const char kEnableAndroidSpellcheckerDescription[];
896 extern const char kEnableAndroidSpellcheckerName[]; 899 extern const char kEnableAndroidSpellcheckerName[];
897 900
898 extern const char kEnableClientLoFiName[];
899 extern const char kEnableClientLoFiDescription[];
900
901 extern const char kEnableConsistentOmniboxGeolocationName[]; 901 extern const char kEnableConsistentOmniboxGeolocationName[];
902 extern const char kEnableConsistentOmniboxGeolocationDescription[]; 902 extern const char kEnableConsistentOmniboxGeolocationDescription[];
903 903
904 extern const char kEnableContentSuggestionsNewFaviconServerName[]; 904 extern const char kEnableContentSuggestionsNewFaviconServerName[];
905 extern const char kEnableContentSuggestionsNewFaviconServerDescription[]; 905 extern const char kEnableContentSuggestionsNewFaviconServerDescription[];
906 906
907 extern const char kEnableContentSuggestionsLargeThumbnailName[]; 907 extern const char kEnableContentSuggestionsLargeThumbnailName[];
908 extern const char kEnableContentSuggestionsLargeThumbnailDescription[]; 908 extern const char kEnableContentSuggestionsLargeThumbnailDescription[];
909 909
910 extern const char kEnableContentSuggestionsVideoOverlayName[]; 910 extern const char kEnableContentSuggestionsVideoOverlayName[];
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1558 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1559 1559
1560 // ============================================================================ 1560 // ============================================================================
1561 // Don't just add flags to the end, put them in the right section in 1561 // Don't just add flags to the end, put them in the right section in
1562 // alphabetical order. See top instructions for more. 1562 // alphabetical order. See top instructions for more.
1563 // ============================================================================ 1563 // ============================================================================
1564 1564
1565 } // namespace flag_descriptions 1565 } // namespace flag_descriptions
1566 1566
1567 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 1567 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/flag_descriptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698