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

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

Issue 2850003002: Add flag to override Effective Connection Type (Closed)
Patch Set: Rebased Created 3 years, 7 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/flag_descriptions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 3334 matching lines...) Expand 10 before | Expand all | Expand 10 after
3345 extern const char kAutoplayPolicyUserGestureRequired[]; 3345 extern const char kAutoplayPolicyUserGestureRequired[];
3346 3346
3347 // Name of the about: flag for displaying the title of the omnibox match for 3347 // Name of the about: flag for displaying the title of the omnibox match for
3348 // current URL. 3348 // current URL.
3349 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; 3349 extern const char kOmniboxDisplayTitleForCurrentUrlName[];
3350 3350
3351 // Description of the about: flag for displaying the title of the omnibox match 3351 // Description of the about: flag for displaying the title of the omnibox match
3352 // for current URL. 3352 // for current URL.
3353 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; 3353 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[];
3354 3354
3355 // Name of the flag that forces Network Quality Estimator (NQE) to always
3356 // return the specified effective connection type.
3357 extern const char kForceEffectiveConnectionTypeName[];
3358
3359 // Description of the flag that forces Network Quality Estimator (NQE) to always
3360 // return the specified effective connection type.
3361 extern const char kForceEffectiveConnectionTypeDescription[];
3362
3363 // Description of the various effective connection type choices that can be
3364 // set using kForceEffectiveConnectionTypeName flag.
3365 extern const char kEffectiveConnectionTypeUnknownDescription[];
3366 extern const char kEffectiveConnectionTypeOfflineDescription[];
3367 extern const char kEffectiveConnectionTypeSlow2GDescription[];
3368 extern const char kEffectiveConnectionType2GDescription[];
3369 extern const char kEffectiveConnectionType3GDescription[];
3370 extern const char kEffectiveConnectionType4GDescription[];
3371
3355 // Name & description for the heap profiling flag. 3372 // Name & description for the heap profiling flag.
3356 extern const char kEnableHeapProfilingName[]; 3373 extern const char kEnableHeapProfilingName[];
3357 extern const char kEnableHeapProfilingDescription[]; 3374 extern const char kEnableHeapProfilingDescription[];
3358 3375
3359 // Descriptions of the different heap profiling modes. 3376 // Descriptions of the different heap profiling modes.
3360 extern const char kEnableHeapProfilingModePseudo[]; 3377 extern const char kEnableHeapProfilingModePseudo[];
3361 extern const char kEnableHeapProfilingModeNative[]; 3378 extern const char kEnableHeapProfilingModeNative[];
3362 extern const char kEnableHeapProfilingTaskProfiler[]; 3379 extern const char kEnableHeapProfilingTaskProfiler[];
3363 3380
3364 } // namespace flag_descriptions 3381 } // namespace flag_descriptions
3365 3382
3366 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3383 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/flag_descriptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698