| 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 3056 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3067 "User gesture is required for cross-origin iframes."; | 3067 "User gesture is required for cross-origin iframes."; |
| 3068 | 3068 |
| 3069 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3069 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 3070 "Include title for the current URL in the omnibox"; | 3070 "Include title for the current URL in the omnibox"; |
| 3071 | 3071 |
| 3072 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3072 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 3073 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3073 "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 3074 "the current page is provided as the first suggestion without a title. " | 3074 "the current page is provided as the first suggestion without a title. " |
| 3075 "Enabling this flag causes the title to be displayed."; | 3075 "Enabling this flag causes the title to be displayed."; |
| 3076 | 3076 |
| 3077 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; |
| 3078 |
| 3079 const char kOmniboxUIVerticalMarginDescription[] = |
| 3080 "Changes the vertical margin in the Omnibox UI."; |
| 3081 |
| 3077 const char kEnableHeapProfilingName[] = "Heap profiling"; | 3082 const char kEnableHeapProfilingName[] = "Heap profiling"; |
| 3078 | 3083 |
| 3079 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3084 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
| 3080 | 3085 |
| 3081 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3086 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
| 3082 | 3087 |
| 3083 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3088 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
| 3084 | 3089 |
| 3085 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3090 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
| 3086 | 3091 |
| 3087 } // namespace flag_descriptions | 3092 } // namespace flag_descriptions |
| OLD | NEW |