| 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 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1055 | 1055 |
| 1056 const char kEnableNavigationTracingName[] = "Enable navigation tracing"; | 1056 const char kEnableNavigationTracingName[] = "Enable navigation tracing"; |
| 1057 | 1057 |
| 1058 const char kEnableNavigationTracingDescription[] = | 1058 const char kEnableNavigationTracingDescription[] = |
| 1059 "This is to be used in conjunction with the trace-upload-url flag. " | 1059 "This is to be used in conjunction with the trace-upload-url flag. " |
| 1060 "WARNING: When enabled, Chrome will record performance data for every " | 1060 "WARNING: When enabled, Chrome will record performance data for every " |
| 1061 "navigation and upload it to the URL specified by the trace-upload-url " | 1061 "navigation and upload it to the URL specified by the trace-upload-url " |
| 1062 "flag. The trace may include personally identifiable information (PII) " | 1062 "flag. The trace may include personally identifiable information (PII) " |
| 1063 "such as the titles and URLs of websites you visit."; | 1063 "such as the titles and URLs of websites you visit."; |
| 1064 | 1064 |
| 1065 const char kEnablePictureInPictureName[] = "Enable picture in picture."; |
| 1066 |
| 1067 const char kEnablePictureInPictureDescription[] = |
| 1068 "Enable the picture in picture feature for videos."; |
| 1069 |
| 1065 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; | 1070 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; |
| 1066 | 1071 |
| 1067 const char kTraceUploadUrlDescription[] = | 1072 const char kTraceUploadUrlDescription[] = |
| 1068 "This is to be used in conjunction with the enable-navigation-tracing " | 1073 "This is to be used in conjunction with the enable-navigation-tracing " |
| 1069 "flag. Please select the label that best describes the recorded traces. " | 1074 "flag. Please select the label that best describes the recorded traces. " |
| 1070 "This will choose the destination the traces are uploaded to. If you " | 1075 "This will choose the destination the traces are uploaded to. If you " |
| 1071 "are not sure, select other. If left empty, no traces will be " | 1076 "are not sure, select other. If left empty, no traces will be " |
| 1072 "uploaded."; | 1077 "uploaded."; |
| 1073 | 1078 |
| 1074 const char kDisableAudioForDesktopShareName[] = | 1079 const char kDisableAudioForDesktopShareName[] = |
| (...skipping 2124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3199 | 3204 |
| 3200 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3205 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3201 "New window behavior for the accessibility keyboard"; | 3206 "New window behavior for the accessibility keyboard"; |
| 3202 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3207 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3203 "Disable new window behavior for the accessibility keyboard " | 3208 "Disable new window behavior for the accessibility keyboard " |
| 3204 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3209 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3205 | 3210 |
| 3206 #endif // defined(OS_CHROMEOS) | 3211 #endif // defined(OS_CHROMEOS) |
| 3207 | 3212 |
| 3208 } // namespace flag_descriptions | 3213 } // namespace flag_descriptions |
| OLD | NEW |