OLD | NEW |
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 kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
10 | 10 |
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1188 "Use a carrier-specific Data Reduction Proxy for testing."; | 1188 "Use a carrier-specific Data Reduction Proxy for testing."; |
1189 | 1189 |
1190 const char kEnableDataReductionProxySavingsPromoName[] = | 1190 const char kEnableDataReductionProxySavingsPromoName[] = |
1191 "Data Saver 1 MB Savings Promo"; | 1191 "Data Saver 1 MB Savings Promo"; |
1192 | 1192 |
1193 const char kEnableDataReductionProxySavingsPromoDescription[] = | 1193 const char kEnableDataReductionProxySavingsPromoDescription[] = |
1194 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has " | 1194 "Enable a Data Saver promo for 1 MB of savings. If Data Saver has " |
1195 "already saved 1 MB of data, then the promo will not be shown. Data " | 1195 "already saved 1 MB of data, then the promo will not be shown. Data " |
1196 "Saver must be enabled for the promo to be shown."; | 1196 "Saver must be enabled for the promo to be shown."; |
1197 | 1197 |
| 1198 const char kEnableStalePreviewsName[] = "Stale Previews Timestamp"; |
| 1199 |
| 1200 const char kEnableStalePreviewsDescription[] = |
| 1201 "Enable showing a timestamp that says how old a Preview is on the Previews " |
| 1202 "infobar."; |
| 1203 |
1198 #if defined(OS_ANDROID) | 1204 #if defined(OS_ANDROID) |
1199 | 1205 |
1200 const char kEnableDataReductionProxyMainMenuName[] = | 1206 const char kEnableDataReductionProxyMainMenuName[] = |
1201 "Enable Data Saver main menu footer"; | 1207 "Enable Data Saver main menu footer"; |
1202 | 1208 |
1203 const char kEnableDataReductionProxyMainMenuDescription[] = | 1209 const char kEnableDataReductionProxyMainMenuDescription[] = |
1204 "Enables the Data Saver footer in the main menu"; | 1210 "Enables the Data Saver footer in the main menu"; |
1205 | 1211 |
1206 const char kEnableDataReductionProxySiteBreakdownName[] = | 1212 const char kEnableDataReductionProxySiteBreakdownName[] = |
1207 "Data Saver Site Breakdown"; | 1213 "Data Saver Site Breakdown"; |
(...skipping 2025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3233 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3239 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3234 | 3240 |
3235 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3241 const char kUiDevToolsName[] = "Enable native UI inspection"; |
3236 const char kUiDevToolsDescription[] = | 3242 const char kUiDevToolsDescription[] = |
3237 "Enables inspection of native UI elements. For local inspection use " | 3243 "Enables inspection of native UI elements. For local inspection use " |
3238 "chrome://inspect#other"; | 3244 "chrome://inspect#other"; |
3239 | 3245 |
3240 #endif // defined(OS_CHROMEOS) | 3246 #endif // defined(OS_CHROMEOS) |
3241 | 3247 |
3242 } // namespace flag_descriptions | 3248 } // namespace flag_descriptions |
OLD | NEW |