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 3068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3079 "User gesture is required for cross-origin iframes."; | 3079 "User gesture is required for cross-origin iframes."; |
3080 | 3080 |
3081 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3081 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
3082 "Include title for the current URL in the omnibox"; | 3082 "Include title for the current URL in the omnibox"; |
3083 | 3083 |
3084 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3084 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
3085 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3085 "In the event that the omnibox provides suggestions on-focus, the URL of " |
3086 "the current page is provided as the first suggestion without a title. " | 3086 "the current page is provided as the first suggestion without a title. " |
3087 "Enabling this flag causes the title to be displayed."; | 3087 "Enabling this flag causes the title to be displayed."; |
3088 | 3088 |
| 3089 const char kForceEffectiveConnectionTypeName[] = |
| 3090 "Override effective connection type"; |
| 3091 |
| 3092 const char kForceEffectiveConnectionTypeDescription[] = |
| 3093 "Overrides the effective connection type of the current connection " |
| 3094 "returned by the network quality estimator."; |
| 3095 |
| 3096 const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown"; |
| 3097 const char kEffectiveConnectionTypeOfflineDescription[] = "Offline"; |
| 3098 const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G"; |
| 3099 const char kEffectiveConnectionType2GDescription[] = "2G"; |
| 3100 const char kEffectiveConnectionType3GDescription[] = "3G"; |
| 3101 const char kEffectiveConnectionType4GDescription[] = "4G"; |
| 3102 |
3089 const char kEnableHeapProfilingName[] = "Heap profiling"; | 3103 const char kEnableHeapProfilingName[] = "Heap profiling"; |
3090 | 3104 |
3091 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3105 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
3092 | 3106 |
3093 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3107 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
3094 | 3108 |
3095 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3109 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
3096 | 3110 |
3097 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3111 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
3098 | 3112 |
3099 } // namespace flag_descriptions | 3113 } // namespace flag_descriptions |
OLD | NEW |