Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2960703003: Add a feature flag for network service and about:flags entry for it. (Closed)
Patch Set: more updates Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 1053
1054 const char kEnableNavigationTracingName[] = "Enable navigation tracing"; 1054 const char kEnableNavigationTracingName[] = "Enable navigation tracing";
1055 1055
1056 const char kEnableNavigationTracingDescription[] = 1056 const char kEnableNavigationTracingDescription[] =
1057 "This is to be used in conjunction with the trace-upload-url flag. " 1057 "This is to be used in conjunction with the trace-upload-url flag. "
1058 "WARNING: When enabled, Chrome will record performance data for every " 1058 "WARNING: When enabled, Chrome will record performance data for every "
1059 "navigation and upload it to the URL specified by the trace-upload-url " 1059 "navigation and upload it to the URL specified by the trace-upload-url "
1060 "flag. The trace may include personally identifiable information (PII) " 1060 "flag. The trace may include personally identifiable information (PII) "
1061 "such as the titles and URLs of websites you visit."; 1061 "such as the titles and URLs of websites you visit.";
1062 1062
1063 const char kEnableNetworkServiceName[] = "Enable network service";
1064
1065 const char kEnableNetworkServiceDescription[] =
1066 "Enables the network service, which makes network requests through a "
1067 "separate service. Note: most features don't work with this yet.";
1068
1063 const char kEnablePictureInPictureName[] = "Enable picture in picture."; 1069 const char kEnablePictureInPictureName[] = "Enable picture in picture.";
1064 1070
1065 const char kEnablePictureInPictureDescription[] = 1071 const char kEnablePictureInPictureDescription[] =
1066 "Enable the picture in picture feature for videos."; 1072 "Enable the picture in picture feature for videos.";
1067 1073
1068 const char kTraceUploadUrlName[] = "Trace label for navigation tracing"; 1074 const char kTraceUploadUrlName[] = "Trace label for navigation tracing";
1069 1075
1070 const char kTraceUploadUrlDescription[] = 1076 const char kTraceUploadUrlDescription[] =
1071 "This is to be used in conjunction with the enable-navigation-tracing " 1077 "This is to be used in conjunction with the enable-navigation-tracing "
1072 "flag. Please select the label that best describes the recorded traces. " 1078 "flag. Please select the label that best describes the recorded traces. "
(...skipping 2208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3281 "in non-sticky mode (do not change work area in non-sticky mode)."; 3287 "in non-sticky mode (do not change work area in non-sticky mode).";
3282 3288
3283 const char kUiDevToolsName[] = "Enable native UI inspection"; 3289 const char kUiDevToolsName[] = "Enable native UI inspection";
3284 const char kUiDevToolsDescription[] = 3290 const char kUiDevToolsDescription[] =
3285 "Enables inspection of native UI elements. For local inspection use " 3291 "Enables inspection of native UI elements. For local inspection use "
3286 "chrome://inspect#other"; 3292 "chrome://inspect#other";
3287 3293
3288 #endif // defined(OS_CHROMEOS) 3294 #endif // defined(OS_CHROMEOS)
3289 3295
3290 } // namespace flag_descriptions 3296 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698