| 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 3040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3051 "User gesture is required for cross-origin iframes."; | 3051 "User gesture is required for cross-origin iframes."; |
| 3052 | 3052 |
| 3053 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3053 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 3054 "Include title for the current URL in the omnibox"; | 3054 "Include title for the current URL in the omnibox"; |
| 3055 | 3055 |
| 3056 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3056 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 3057 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3057 "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 3058 "the current page is provided as the first suggestion without a title. " | 3058 "the current page is provided as the first suggestion without a title. " |
| 3059 "Enabling this flag causes the title to be displayed."; | 3059 "Enabling this flag causes the title to be displayed."; |
| 3060 | 3060 |
| 3061 const char kForceEffectiveConnectionTypeName[] = |
| 3062 "Override effective connection type"; |
| 3063 |
| 3064 const char kForceEffectiveConnectionTypeDescription[] = |
| 3065 "Overrides the effective connection type of the current connection " |
| 3066 "returned by the network quality estimator."; |
| 3067 |
| 3068 const char kEffectiveConnectionTypeUnknownDescription[] = "Unknown"; |
| 3069 const char kEffectiveConnectionTypeOfflineDescription[] = "Offline"; |
| 3070 const char kEffectiveConnectionTypeSlow2GDescription[] = "Slow 2G"; |
| 3071 const char kEffectiveConnectionType2GDescription[] = "2G"; |
| 3072 const char kEffectiveConnectionType3GDescription[] = "3G"; |
| 3073 const char kEffectiveConnectionType4GDescription[] = "4G"; |
| 3074 |
| 3061 const char kEnableHeapProfilingName[] = "Heap profiling"; | 3075 const char kEnableHeapProfilingName[] = "Heap profiling"; |
| 3062 | 3076 |
| 3063 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3077 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
| 3064 | 3078 |
| 3065 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3079 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
| 3066 | 3080 |
| 3067 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3081 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
| 3068 | 3082 |
| 3069 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3083 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
| 3070 | 3084 |
| 3071 } // namespace flag_descriptions | 3085 } // namespace flag_descriptions |
| OLD | NEW |