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

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

Issue 2854893003: Adding an Android about:flags feature for offline previews (Closed)
Patch Set: 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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after
1198 1198
1199 const char kEnableDataReductionProxyMainMenuDescription[] = 1199 const char kEnableDataReductionProxyMainMenuDescription[] =
1200 "Enables the Data Saver footer in the main menu"; 1200 "Enables the Data Saver footer in the main menu";
1201 1201
1202 const char kEnableDataReductionProxySiteBreakdownName[] = 1202 const char kEnableDataReductionProxySiteBreakdownName[] =
1203 "Data Saver Site Breakdown"; 1203 "Data Saver Site Breakdown";
1204 1204
1205 const char kEnableDataReductionProxySiteBreakdownDescription[] = 1205 const char kEnableDataReductionProxySiteBreakdownDescription[] =
1206 "Enable the site breakdown on the Data Saver settings page."; 1206 "Enable the site breakdown on the Data Saver settings page.";
1207 1207
1208 const char kEnableOfflinePreviewsName[] = "Offline Page Previews";
1209
1210 const char kEnableOfflinePreviewsDescription[] =
1211 "Enable showing offline page previews on poor networks.";
tbansal1 2017/05/03 17:35:19 s/poor/slow/
RyanSturm 2017/05/03 21:26:25 Done.
1212
1208 #endif // defined(OS_ANDROID) 1213 #endif // defined(OS_ANDROID)
1209 1214
1210 const char kLcdTextName[] = "LCD text antialiasing"; 1215 const char kLcdTextName[] = "LCD text antialiasing";
1211 1216
1212 const char kLcdTextDescription[] = 1217 const char kLcdTextDescription[] =
1213 "If disabled, text is rendered with grayscale antialiasing instead of " 1218 "If disabled, text is rendered with grayscale antialiasing instead of "
1214 "LCD (subpixel) when doing accelerated compositing."; 1219 "LCD (subpixel) when doing accelerated compositing.";
1215 1220
1216 const char kDistanceFieldTextName[] = "Distance field text"; 1221 const char kDistanceFieldTextName[] = "Distance field text";
1217 1222
(...skipping 1855 matching lines...) Expand 10 before | Expand all | Expand 10 after
3073 3078
3074 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; 3079 const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
3075 3080
3076 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; 3081 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
3077 3082
3078 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; 3083 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
3079 3084
3080 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; 3085 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
3081 3086
3082 } // namespace flag_descriptions 3087 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698