| 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 2909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2920 | 2920 |
| 2921 const char kOfficeEditingComponentAppDescription[] = | 2921 const char kOfficeEditingComponentAppDescription[] = |
| 2922 "Office Editing for Docs, Sheets & Slides for testing purposes."; | 2922 "Office Editing for Docs, Sheets & Slides for testing purposes."; |
| 2923 | 2923 |
| 2924 const char kDisplayColorCalibrationName[] = "Color calibration of the display"; | 2924 const char kDisplayColorCalibrationName[] = "Color calibration of the display"; |
| 2925 | 2925 |
| 2926 const char kDisplayColorCalibrationDescription[] = | 2926 const char kDisplayColorCalibrationDescription[] = |
| 2927 "Allow color calibration of the display if the display supports the " | 2927 "Allow color calibration of the display if the display supports the " |
| 2928 "feature."; | 2928 "feature."; |
| 2929 | 2929 |
| 2930 const char kEnableFullscreenAppListName[] = "Enable The Peeking Launcher"; |
| 2931 |
| 2932 const char kEnableFullscreenAppListDescription[] = |
| 2933 "The peeking launcher UI supports touch and provides more space for upcoming
" |
| 2934 "features."; |
| 2935 |
| 2930 const char kMemoryPressureThresholdName[] = | 2936 const char kMemoryPressureThresholdName[] = |
| 2931 "Memory discard strategy for advanced pressure handling"; | 2937 "Memory discard strategy for advanced pressure handling"; |
| 2932 | 2938 |
| 2933 const char kMemoryPressureThresholdDescription[] = | 2939 const char kMemoryPressureThresholdDescription[] = |
| 2934 "Memory discarding strategy to use"; | 2940 "Memory discarding strategy to use"; |
| 2935 | 2941 |
| 2936 const char kConservativeThresholds[] = | 2942 const char kConservativeThresholds[] = |
| 2937 "Conservative memory pressure release strategy"; | 2943 "Conservative memory pressure release strategy"; |
| 2938 | 2944 |
| 2939 const char kAggressiveCacheDiscardThresholds[] = | 2945 const char kAggressiveCacheDiscardThresholds[] = |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3287 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3293 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3288 | 3294 |
| 3289 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3295 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3290 const char kUiDevToolsDescription[] = | 3296 const char kUiDevToolsDescription[] = |
| 3291 "Enables inspection of native UI elements. For local inspection use " | 3297 "Enables inspection of native UI elements. For local inspection use " |
| 3292 "chrome://inspect#other"; | 3298 "chrome://inspect#other"; |
| 3293 | 3299 |
| 3294 #endif // defined(OS_CHROMEOS) | 3300 #endif // defined(OS_CHROMEOS) |
| 3295 | 3301 |
| 3296 } // namespace flag_descriptions | 3302 } // namespace flag_descriptions |
| OLD | NEW |