| 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 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 | 1231 |
| 1232 const char kDistanceFieldTextDescription[] = | 1232 const char kDistanceFieldTextDescription[] = |
| 1233 "Text is rendered with signed distance fields rather than bitmap alpha " | 1233 "Text is rendered with signed distance fields rather than bitmap alpha " |
| 1234 "masks."; | 1234 "masks."; |
| 1235 | 1235 |
| 1236 const char kZeroCopyName[] = "Zero-copy rasterizer"; | 1236 const char kZeroCopyName[] = "Zero-copy rasterizer"; |
| 1237 | 1237 |
| 1238 const char kZeroCopyDescription[] = | 1238 const char kZeroCopyDescription[] = |
| 1239 "Raster threads write directly to GPU memory associated with tiles."; | 1239 "Raster threads write directly to GPU memory associated with tiles."; |
| 1240 | 1240 |
| 1241 const char kHideInactiveStackedTabCloseButtonsName[] = | |
| 1242 "Hiding close buttons on inactive tabs when stacked"; | |
| 1243 | |
| 1244 const char kHideInactiveStackedTabCloseButtonsDescription[] = | |
| 1245 "Hides the close buttons of inactive tabs when the tabstrip is in " | |
| 1246 "stacked mode."; | |
| 1247 | |
| 1248 const char kDefaultTileWidthName[] = "Default tile width"; | 1241 const char kDefaultTileWidthName[] = "Default tile width"; |
| 1249 | 1242 |
| 1250 const char kDefaultTileWidthDescription[] = "Specify the default tile width."; | 1243 const char kDefaultTileWidthDescription[] = "Specify the default tile width."; |
| 1251 | 1244 |
| 1252 const char kDefaultTileWidthShort[] = "128"; | 1245 const char kDefaultTileWidthShort[] = "128"; |
| 1253 | 1246 |
| 1254 const char kDefaultTileWidthTall[] = "256"; | 1247 const char kDefaultTileWidthTall[] = "256"; |
| 1255 | 1248 |
| 1256 const char kDefaultTileWidthGrande[] = "512"; | 1249 const char kDefaultTileWidthGrande[] = "512"; |
| 1257 | 1250 |
| (...skipping 1982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3240 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3233 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3241 | 3234 |
| 3242 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3235 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3243 const char kUiDevToolsDescription[] = | 3236 const char kUiDevToolsDescription[] = |
| 3244 "Enables inspection of native UI elements. For local inspection use " | 3237 "Enables inspection of native UI elements. For local inspection use " |
| 3245 "chrome://inspect#other"; | 3238 "chrome://inspect#other"; |
| 3246 | 3239 |
| 3247 #endif // defined(OS_CHROMEOS) | 3240 #endif // defined(OS_CHROMEOS) |
| 3248 | 3241 |
| 3249 } // namespace flag_descriptions | 3242 } // namespace flag_descriptions |
| OLD | NEW |