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 3031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3042 "Policy used when deciding if audio or video is allowed to autoplay."; | 3042 "Policy used when deciding if audio or video is allowed to autoplay."; |
| 3043 | 3043 |
| 3044 const char kAutoplayPolicyNoUserGestureRequired[] = | 3044 const char kAutoplayPolicyNoUserGestureRequired[] = |
| 3045 "No user gesture is required."; | 3045 "No user gesture is required."; |
| 3046 | 3046 |
| 3047 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; | 3047 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; |
| 3048 | 3048 |
| 3049 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = | 3049 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = |
| 3050 "User gesture is required for cross-origin iframes."; | 3050 "User gesture is required for cross-origin iframes."; |
| 3051 | 3051 |
| 3052 const char kEnableHeapProfilingName[] = "Heap profiling"; | |
| 3053 | |
| 3054 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | |
| 3055 | |
| 3056 extern const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | |
|
Wez
2017/04/28 17:17:12
Why are these extern and not the ones above?
DmitrySkiba
2017/04/28 19:39:13
Good catch, thanks!
| |
| 3057 | |
| 3058 extern const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | |
| 3059 | |
| 3060 extern const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | |
| 3061 | |
| 3052 } // namespace flag_descriptions | 3062 } // namespace flag_descriptions |
| OLD | NEW |