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

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

Issue 2887423002: Add an about:flag to support alternative data saver features (Closed)
Patch Set: tbansal nits Created 3 years, 7 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
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 #include "chrome/browser/flag_descriptions.h" 5 #include "chrome/browser/flag_descriptions.h"
6 6
7 namespace flag_descriptions { 7 namespace flag_descriptions {
8 8
9 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 "Slow connections only"; 1155 "Slow connections only";
1156 1156
1157 const char kEnableDataReductionProxyLitePageName[] = 1157 const char kEnableDataReductionProxyLitePageName[] =
1158 "Lite pages for Data Saver Lo-Fi mode"; 1158 "Lite pages for Data Saver Lo-Fi mode";
1159 1159
1160 const char kEnableDataReductionProxyLitePageDescription[] = 1160 const char kEnableDataReductionProxyLitePageDescription[] =
1161 "Enable lite pages in Data Saver Lo-Fi mode. Previews of pages will be " 1161 "Enable lite pages in Data Saver Lo-Fi mode. Previews of pages will be "
1162 "shown instead of image placeholders when Lo-Fi is on. Data Saver and " 1162 "shown instead of image placeholders when Lo-Fi is on. Data Saver and "
1163 "Lo-Fi must be enabled for lite pages to be shown."; 1163 "Lo-Fi must be enabled for lite pages to be shown.";
1164 1164
1165 const char kDataReductionProxyServerAlternative[] =
1166 "Use alternative server configuration";
buettner 2017/05/23 23:32:13 Just curious, but why are there three descriptions
RyanSturm 2017/05/24 16:16:03 1) what the text in the drop down says 2) What the
1167
1168 const char kEnableDataReductionProxyServerExperimentName[] =
1169 "Use an alternative Data Saver back end configuration.";
1170
1171 const char kEnableDataReductionProxyServerExperimentDescription[] =
1172 "Enable a different approach to saving data by configuring the back end "
1173 "server";
1174
1165 const char kDataReductionProxyCarrierTestName[] = 1175 const char kDataReductionProxyCarrierTestName[] =
1166 "Enable a carrier-specific Data Reduction Proxy for testing."; 1176 "Enable a carrier-specific Data Reduction Proxy for testing.";
1167 1177
1168 const char kDataReductionProxyCarrierTestDescription[] = 1178 const char kDataReductionProxyCarrierTestDescription[] =
1169 "Use a carrier-specific Data Reduction Proxy for testing."; 1179 "Use a carrier-specific Data Reduction Proxy for testing.";
1170 1180
1171 const char kEnableDataReductionProxySavingsPromoName[] = 1181 const char kEnableDataReductionProxySavingsPromoName[] =
1172 "Data Saver 1 MB Savings Promo"; 1182 "Data Saver 1 MB Savings Promo";
1173 1183
1174 const char kEnableDataReductionProxySavingsPromoDescription[] = 1184 const char kEnableDataReductionProxySavingsPromoDescription[] =
(...skipping 1975 matching lines...) Expand 10 before | Expand all | Expand 10 after
3150 3160
3151 const char kDisableNewVirtualKeyboardBehaviorName[] = 3161 const char kDisableNewVirtualKeyboardBehaviorName[] =
3152 "New window behavior for the accessibility keyboard"; 3162 "New window behavior for the accessibility keyboard";
3153 const char kDisableNewVirtualKeyboardBehaviorDescription[] = 3163 const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3154 "Disable new window behavior for the accessibility keyboard " 3164 "Disable new window behavior for the accessibility keyboard "
3155 "in non-sticky mode (do not change work area in non-sticky mode)."; 3165 "in non-sticky mode (do not change work area in non-sticky mode).";
3156 3166
3157 #endif // defined(OS_CHROMEOS) 3167 #endif // defined(OS_CHROMEOS)
3158 3168
3159 } // namespace flag_descriptions 3169 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698