Chromium Code Reviews| 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 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 938 const char kBootAnimationDescription[] = | 938 const char kBootAnimationDescription[] = |
| 939 "Wallpaper boot animation (except for OOBE case)."; | 939 "Wallpaper boot animation (except for OOBE case)."; |
| 940 | 940 |
| 941 #endif // defined(OS_CHROMEOS) | 941 #endif // defined(OS_CHROMEOS) |
| 942 | 942 |
| 943 const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode"; | 943 const char kAcceleratedVideoDecodeName[] = "Hardware-accelerated video decode"; |
| 944 | 944 |
| 945 const char kAcceleratedVideoDecodeDescription[] = | 945 const char kAcceleratedVideoDecodeDescription[] = |
| 946 "Hardware-accelerated video decode where available."; | 946 "Hardware-accelerated video decode where available."; |
| 947 | 947 |
| 948 const char kEnableHDRName[] = "HDR Mode"; | |
|
ccameron
2017/03/28 19:46:35
I'd prefer calling it something like "HDR support"
hubbe
2017/03/29 21:14:26
I really think "mode" is the right word, since it
| |
| 949 | |
| 950 const char kEnableHDRDescription[] = | |
| 951 "Enables full HDR support on HDR-compatible displays."; | |
|
ccameron
2017/03/28 19:46:35
Nit: "Enables HDR support on compatible displays."
hubbe
2017/03/29 21:14:26
Done. (I blame my PM for the wording..)
| |
| 952 | |
| 948 const char kCloudImport[] = "Cloud Import"; | 953 const char kCloudImport[] = "Cloud Import"; |
| 949 | 954 |
| 950 const char kCloudImportDescription[] = "Allows the cloud-import feature."; | 955 const char kCloudImportDescription[] = "Allows the cloud-import feature."; |
| 951 | 956 |
| 952 const char kRequestTabletSiteName[] = | 957 const char kRequestTabletSiteName[] = |
| 953 "Request tablet site option in the settings menu"; | 958 "Request tablet site option in the settings menu"; |
| 954 | 959 |
| 955 const char kRequestTabletSiteDescription[] = | 960 const char kRequestTabletSiteDescription[] = |
| 956 "Allows the user to request tablet site. Web content is often optimized " | 961 "Allows the user to request tablet site. Web content is often optimized " |
| 957 "for tablet devices. When this option is selected the user agent string " | 962 "for tablet devices. When this option is selected the user agent string " |
| (...skipping 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2907 const char kEnableEhvInputName[] = | 2912 const char kEnableEhvInputName[] = |
| 2908 "Emoji, handwriting and voice input on opt-in IME menu"; | 2913 "Emoji, handwriting and voice input on opt-in IME menu"; |
| 2909 | 2914 |
| 2910 const char kEnableEhvInputDescription[] = | 2915 const char kEnableEhvInputDescription[] = |
| 2911 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2916 "Enable access to emoji, handwriting and voice input form opt-in IME " |
| 2912 "menu."; | 2917 "menu."; |
| 2913 | 2918 |
| 2914 #endif // #if defined(OS_CHROMEOS) | 2919 #endif // #if defined(OS_CHROMEOS) |
| 2915 | 2920 |
| 2916 } // namespace flag_descriptions | 2921 } // namespace flag_descriptions |
| OLD | NEW |