| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 | 1060 |
| 1061 const char kEnableNavigationTracingName[] = "Enable navigation tracing"; | 1061 const char kEnableNavigationTracingName[] = "Enable navigation tracing"; |
| 1062 | 1062 |
| 1063 const char kEnableNavigationTracingDescription[] = | 1063 const char kEnableNavigationTracingDescription[] = |
| 1064 "This is to be used in conjunction with the trace-upload-url flag. " | 1064 "This is to be used in conjunction with the trace-upload-url flag. " |
| 1065 "WARNING: When enabled, Chrome will record performance data for every " | 1065 "WARNING: When enabled, Chrome will record performance data for every " |
| 1066 "navigation and upload it to the URL specified by the trace-upload-url " | 1066 "navigation and upload it to the URL specified by the trace-upload-url " |
| 1067 "flag. The trace may include personally identifiable information (PII) " | 1067 "flag. The trace may include personally identifiable information (PII) " |
| 1068 "such as the titles and URLs of websites you visit."; | 1068 "such as the titles and URLs of websites you visit."; |
| 1069 | 1069 |
| 1070 const char kEnableNightLightName[] = "Enable Night Light"; |
| 1071 const char kEnableNightLightDescription[] = |
| 1072 "Enable the Night Light feature to control the color temperature of the " |
| 1073 "screen."; |
| 1074 |
| 1070 const char kEnablePictureInPictureName[] = "Enable picture in picture."; | 1075 const char kEnablePictureInPictureName[] = "Enable picture in picture."; |
| 1071 | 1076 |
| 1072 const char kEnablePictureInPictureDescription[] = | 1077 const char kEnablePictureInPictureDescription[] = |
| 1073 "Enable the picture in picture feature for videos."; | 1078 "Enable the picture in picture feature for videos."; |
| 1074 | 1079 |
| 1075 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; | 1080 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; |
| 1076 | 1081 |
| 1077 const char kTraceUploadUrlDescription[] = | 1082 const char kTraceUploadUrlDescription[] = |
| 1078 "This is to be used in conjunction with the enable-navigation-tracing " | 1083 "This is to be used in conjunction with the enable-navigation-tracing " |
| 1079 "flag. Please select the label that best describes the recorded traces. " | 1084 "flag. Please select the label that best describes the recorded traces. " |
| (...skipping 2145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3225 | 3230 |
| 3226 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3231 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3227 "New window behavior for the accessibility keyboard"; | 3232 "New window behavior for the accessibility keyboard"; |
| 3228 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3233 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3229 "Disable new window behavior for the accessibility keyboard " | 3234 "Disable new window behavior for the accessibility keyboard " |
| 3230 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3235 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3231 | 3236 |
| 3232 #endif // defined(OS_CHROMEOS) | 3237 #endif // defined(OS_CHROMEOS) |
| 3233 | 3238 |
| 3234 } // namespace flag_descriptions | 3239 } // namespace flag_descriptions |
| OLD | NEW |