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 3116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3127 "Enable an experimental change for Location.reload() to trigger a " | 3127 "Enable an experimental change for Location.reload() to trigger a " |
3128 "hard-reload."; | 3128 "hard-reload."; |
3129 | 3129 |
3130 const char kCaptureThumbnailOnLoadFinishedName[] = | 3130 const char kCaptureThumbnailOnLoadFinishedName[] = |
3131 "Capture page thumbnail on load finished"; | 3131 "Capture page thumbnail on load finished"; |
3132 | 3132 |
3133 const char kCaptureThumbnailOnLoadFinishedDescription[] = | 3133 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
3134 "Capture a page thumbnail (for use on the New Tab page) when the page load " | 3134 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
3135 "finishes, in addition to other times a thumbnail may be captured."; | 3135 "finishes, in addition to other times a thumbnail may be captured."; |
3136 | 3136 |
| 3137 const char kEnableBroadcastMemoryPressureName[] = |
| 3138 "Enables broadcasting memory pressure notifications to renderers."; |
| 3139 const char kEnableBroadcastMemoryPressureDescription[] = |
| 3140 "When enabled, all renderers will be notified of system memory pressure " |
| 3141 "events and will perfom some memory optimizations."; |
| 3142 |
3137 } // namespace flag_descriptions | 3143 } // namespace flag_descriptions |
OLD | NEW |