| 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 3078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3089 const char kEnableHeapProfilingName[] = "Heap profiling"; | 3089 const char kEnableHeapProfilingName[] = "Heap profiling"; |
| 3090 | 3090 |
| 3091 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3091 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
| 3092 | 3092 |
| 3093 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3093 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
| 3094 | 3094 |
| 3095 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3095 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
| 3096 | 3096 |
| 3097 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3097 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
| 3098 | 3098 |
| 3099 const char kCaptureThumbnailOnLoadFinishedName[] = |
| 3100 "Capture page thumbnail on load finished"; |
| 3101 |
| 3102 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
| 3103 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
| 3104 "finishes, in addition to other times a thumbnail may be captured."; |
| 3105 |
| 3099 } // namespace flag_descriptions | 3106 } // namespace flag_descriptions |
| OLD | NEW |