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 3024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3035 "User gesture is required for cross-origin iframes."; | 3035 "User gesture is required for cross-origin iframes."; |
3036 | 3036 |
3037 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3037 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
3038 "Include title for the current URL in the omnibox"; | 3038 "Include title for the current URL in the omnibox"; |
3039 | 3039 |
3040 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3040 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
3041 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3041 "In the event that the omnibox provides suggestions on-focus, the URL of " |
3042 "the current page is provided as the first suggestion without a title. " | 3042 "the current page is provided as the first suggestion without a title. " |
3043 "Enabling this flag causes the title to be displayed."; | 3043 "Enabling this flag causes the title to be displayed."; |
3044 | 3044 |
3045 const char kForceEffectiveConnectionTypeName[] = | |
3046 "Experimental effective connection type"; | |
RyanSturm
2017/05/01 23:08:35
All flags are experimental. "Simulate (or Override
tbansal1
2017/05/02 00:01:50
Done.
| |
3047 | |
3048 const char kForceEffectiveConnectionTypeDescription[] = | |
3049 "Overrides the effective connection type returned by the network quality " | |
3050 "estimator."; | |
RyanSturm
2017/05/01 23:08:35
Add a terse description of what NQE is and what it
tbansal1
2017/05/02 00:01:50
added a bit more of text.
| |
3051 | |
3052 const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown"; | |
3053 const char kEffectiveConnectionTypeOfflineDescription[] = "Offline"; | |
3054 const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G"; | |
3055 const char kEffectiveConnectionType2GDescription[] = "2G"; | |
3056 const char kEffectiveConnectionType3GDescription[] = "3G"; | |
3057 const char kEffectiveConnectionType4GDescription[] = "4G"; | |
3058 | |
3045 } // namespace flag_descriptions | 3059 } // namespace flag_descriptions |
OLD | NEW |