| 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 2287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2298 "Adjusts scroll position to prevent visible jumps when offscreen " | 2298 "Adjusts scroll position to prevent visible jumps when offscreen " |
| 2299 "content changes."; | 2299 "content changes."; |
| 2300 | 2300 |
| 2301 #if defined(OS_CHROMEOS) | 2301 #if defined(OS_CHROMEOS) |
| 2302 | 2302 |
| 2303 const char kDisableNativeCupsName[] = "Native CUPS"; | 2303 const char kDisableNativeCupsName[] = "Native CUPS"; |
| 2304 | 2304 |
| 2305 const char kDisableNativeCupsDescription[] = | 2305 const char kDisableNativeCupsDescription[] = |
| 2306 "Disable the use of the native CUPS printing backend."; | 2306 "Disable the use of the native CUPS printing backend."; |
| 2307 | 2307 |
| 2308 const char kEnablePerUserTimezoneName[] = "Per-user time zone preferences."; |
| 2309 const char kEnablePerUserTimezoneDescription[] = |
| 2310 "Chrome OS system timezone preference is stored and handled for each user " |
| 2311 "individually."; |
| 2312 |
| 2308 const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App"; | 2313 const char kEnableAndroidWallpapersAppName[] = "Android Wallpapers App"; |
| 2309 | 2314 |
| 2310 const char kEnableAndroidWallpapersAppDescription[] = | 2315 const char kEnableAndroidWallpapersAppDescription[] = |
| 2311 "Enables the Android Wallpapers App as the default Wallpaper App on " | 2316 "Enables the Android Wallpapers App as the default Wallpaper App on " |
| 2312 "Chrome OS."; | 2317 "Chrome OS."; |
| 2313 | 2318 |
| 2314 const char kEnableTouchSupportForScreenMagnifierName[] = | 2319 const char kEnableTouchSupportForScreenMagnifierName[] = |
| 2315 "Touch support for screen magnifier"; | 2320 "Touch support for screen magnifier"; |
| 2316 | 2321 |
| 2317 const char kEnableTouchSupportForScreenMagnifierDescription[] = | 2322 const char kEnableTouchSupportForScreenMagnifierDescription[] = |
| (...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3315 "Enables inspection of native UI elements. For local inspection use " | 3320 "Enables inspection of native UI elements. For local inspection use " |
| 3316 "chrome://inspect#other"; | 3321 "chrome://inspect#other"; |
| 3317 | 3322 |
| 3318 const char kMultideviceName[] = "Enable multidevice features"; | 3323 const char kMultideviceName[] = "Enable multidevice features"; |
| 3319 const char kMultideviceDescription[] = | 3324 const char kMultideviceDescription[] = |
| 3320 "Enables UI for controlling multidevice features."; | 3325 "Enables UI for controlling multidevice features."; |
| 3321 | 3326 |
| 3322 #endif // defined(OS_CHROMEOS) | 3327 #endif // defined(OS_CHROMEOS) |
| 3323 | 3328 |
| 3324 } // namespace flag_descriptions | 3329 } // namespace flag_descriptions |
| OLD | NEW |