| 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 3104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3115 | 3115 |
| 3116 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3116 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
| 3117 | 3117 |
| 3118 const char kUseSuggestionsEvenIfFewFeatureName[] = | 3118 const char kUseSuggestionsEvenIfFewFeatureName[] = |
| 3119 "Disable minimum for server-side tile suggestions on NTP."; | 3119 "Disable minimum for server-side tile suggestions on NTP."; |
| 3120 | 3120 |
| 3121 const char kUseSuggestionsEvenIfFewFeatureDescription[] = | 3121 const char kUseSuggestionsEvenIfFewFeatureDescription[] = |
| 3122 "Request server-side suggestions even if there are only very few of them " | 3122 "Request server-side suggestions even if there are only very few of them " |
| 3123 "and use them for tiles on the New Tab Page."; | 3123 "and use them for tiles on the New Tab Page."; |
| 3124 | 3124 |
| 3125 const char kLocationHardReloadName[] = |
| 3126 "Experimental change for Location.reload() to trigger a hard-reload."; |
| 3127 |
| 3128 const char kLocationHardReloadDescription[] = |
| 3129 "Enable an experimental change for Location.reload() to trigger a " |
| 3130 "hard-reload."; |
| 3131 |
| 3125 } // namespace flag_descriptions | 3132 } // namespace flag_descriptions |
| OLD | NEW |