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 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 kEnableNetworkServiceName[] = "Enable network service"; |
| 1071 |
| 1072 const char kEnableNetworkServiceDescription[] = |
| 1073 "Enables the network service, which makes network requests through a " |
| 1074 "separate service. Note: most features don't work with this yet."; |
| 1075 |
1070 const char kEnablePictureInPictureName[] = "Enable picture in picture."; | 1076 const char kEnablePictureInPictureName[] = "Enable picture in picture."; |
1071 | 1077 |
1072 const char kEnablePictureInPictureDescription[] = | 1078 const char kEnablePictureInPictureDescription[] = |
1073 "Enable the picture in picture feature for videos."; | 1079 "Enable the picture in picture feature for videos."; |
1074 | 1080 |
1075 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; | 1081 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; |
1076 | 1082 |
1077 const char kTraceUploadUrlDescription[] = | 1083 const char kTraceUploadUrlDescription[] = |
1078 "This is to be used in conjunction with the enable-navigation-tracing " | 1084 "This is to be used in conjunction with the enable-navigation-tracing " |
1079 "flag. Please select the label that best describes the recorded traces. " | 1085 "flag. Please select the label that best describes the recorded traces. " |
(...skipping 2223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3303 "Enables inspection of native UI elements. For local inspection use " | 3309 "Enables inspection of native UI elements. For local inspection use " |
3304 "chrome://inspect#other"; | 3310 "chrome://inspect#other"; |
3305 | 3311 |
3306 const char kMultideviceName[] = "Enable multidevice features"; | 3312 const char kMultideviceName[] = "Enable multidevice features"; |
3307 const char kMultideviceDescription[] = | 3313 const char kMultideviceDescription[] = |
3308 "Enables UI for controlling multidevice features."; | 3314 "Enables UI for controlling multidevice features."; |
3309 | 3315 |
3310 #endif // defined(OS_CHROMEOS) | 3316 #endif // defined(OS_CHROMEOS) |
3311 | 3317 |
3312 } // namespace flag_descriptions | 3318 } // namespace flag_descriptions |
OLD | NEW |