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

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

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/flag_descriptions.h ('k') | content/child/runtime_features.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 #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 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; 9 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
10 const char kAccelerated2dCanvasDescription[] = 10 const char kAccelerated2dCanvasDescription[] =
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 258
259 const char kEnableBrotliName[] = "Brotli Content-Encoding."; 259 const char kEnableBrotliName[] = "Brotli Content-Encoding.";
260 const char kEnableBrotliDescription[] = 260 const char kEnableBrotliDescription[] =
261 "Enable Brotli Content-Encoding support."; 261 "Enable Brotli Content-Encoding support.";
262 262
263 const char kEnableClearBrowsingDataCountersName[] = 263 const char kEnableClearBrowsingDataCountersName[] =
264 "Enable Clear browsing data counters."; 264 "Enable Clear browsing data counters.";
265 const char kEnableClearBrowsingDataCountersDescription[] = 265 const char kEnableClearBrowsingDataCountersDescription[] =
266 "Shows data volume counters in the Clear browsing data dialog."; 266 "Shows data volume counters in the Clear browsing data dialog.";
267 267
268 const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
269
270 const char kEnableClientLoFiDescription[] =
271 "Enable showing low fidelity images on some pages on slow networks.";
272
268 const char kEnableDataReductionProxyLitePageName[] = 273 const char kEnableDataReductionProxyLitePageName[] =
269 "Lite pages for Data Saver Lo-Fi mode"; 274 "Lite pages for Data Saver Lo-Fi mode";
270 const char kEnableDataReductionProxyLitePageDescription[] = 275 const char kEnableDataReductionProxyLitePageDescription[] =
271 "Enable lite pages in Data Saver Lo-Fi mode. Previews of pages will be " 276 "Enable lite pages in Data Saver Lo-Fi mode. Previews of pages will be "
272 "shown instead of image placeholders when Lo-Fi is on. Data Saver and " 277 "shown instead of image placeholders when Lo-Fi is on. Data Saver and "
273 "Lo-Fi must be enabled for lite pages to be shown."; 278 "Lo-Fi must be enabled for lite pages to be shown.";
274 279
275 const char kDataReductionProxyServerAlternative[] = 280 const char kDataReductionProxyServerAlternative[] =
276 "Use alternative server configuration"; 281 "Use alternative server configuration";
277 const char kEnableDataReductionProxyServerExperimentName[] = 282 const char kEnableDataReductionProxyServerExperimentName[] =
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 "Data Saver Site Breakdown"; 1395 "Data Saver Site Breakdown";
1391 1396
1392 const char kEnableDataReductionProxySiteBreakdownDescription[] = 1397 const char kEnableDataReductionProxySiteBreakdownDescription[] =
1393 "Enable the site breakdown on the Data Saver settings page."; 1398 "Enable the site breakdown on the Data Saver settings page.";
1394 1399
1395 const char kEnableOfflinePreviewsName[] = "Offline Page Previews"; 1400 const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1396 1401
1397 const char kEnableOfflinePreviewsDescription[] = 1402 const char kEnableOfflinePreviewsDescription[] =
1398 "Enable showing offline page previews on slow networks."; 1403 "Enable showing offline page previews on slow networks.";
1399 1404
1400 const char kEnableClientLoFiName[] = "Client-side Lo-Fi previews";
1401
1402 const char kEnableClientLoFiDescription[] =
1403 "Enable showing low fidelity images on some pages on slow networks.";
1404
1405 #endif // defined(OS_ANDROID) 1405 #endif // defined(OS_ANDROID)
1406 1406
1407 const char kLcdTextName[] = "LCD text antialiasing"; 1407 const char kLcdTextName[] = "LCD text antialiasing";
1408 1408
1409 const char kLcdTextDescription[] = 1409 const char kLcdTextDescription[] =
1410 "If disabled, text is rendered with grayscale antialiasing instead of LCD " 1410 "If disabled, text is rendered with grayscale antialiasing instead of LCD "
1411 "(subpixel) when doing accelerated compositing."; 1411 "(subpixel) when doing accelerated compositing.";
1412 1412
1413 const char kZeroCopyName[] = "Zero-copy rasterizer"; 1413 const char kZeroCopyName[] = "Zero-copy rasterizer";
1414 1414
(...skipping 1725 matching lines...) Expand 10 before | Expand all | Expand 10 after
3140 "Enables inspection of native UI elements. For local inspection use " 3140 "Enables inspection of native UI elements. For local inspection use "
3141 "chrome://inspect#other"; 3141 "chrome://inspect#other";
3142 3142
3143 const char kMultideviceName[] = "Enable multidevice features"; 3143 const char kMultideviceName[] = "Enable multidevice features";
3144 const char kMultideviceDescription[] = 3144 const char kMultideviceDescription[] =
3145 "Enables UI for controlling multidevice features."; 3145 "Enables UI for controlling multidevice features.";
3146 3146
3147 #endif // defined(OS_CHROMEOS) 3147 #endif // defined(OS_CHROMEOS)
3148 3148
3149 } // namespace flag_descriptions 3149 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698