Chromium Code Reviews| 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 3072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3083 const char kEnableHeapProfilingName[] = "Heap profiling"; | 3083 const char kEnableHeapProfilingName[] = "Heap profiling"; |
| 3084 | 3084 |
| 3085 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3085 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
| 3086 | 3086 |
| 3087 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3087 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
| 3088 | 3088 |
| 3089 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3089 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
| 3090 | 3090 |
| 3091 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3091 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
| 3092 | 3092 |
| 3093 const char kDisableSuggestionsMinimumName[] = | |
| 3094 "Disable minimum for server-side tile suggestions on NTP."; | |
| 3095 | |
| 3096 const char kDisableSuggestionsMinimumDescription[] = | |
| 3097 "Request suggestions from history even if there are only very few of them " | |
|
Marc Treib
2017/05/03 11:43:56
"from history" is IMO misleading; the suggestions
fhorschig
2017/05/03 14:19:42
Gone.
| |
| 3098 "and use them as tiles on the New Tab Page."; | |
| 3099 | |
| 3093 } // namespace flag_descriptions | 3100 } // namespace flag_descriptions |
| OLD | NEW |