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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
7 | 7 |
8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
(...skipping 3305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3316 extern const char kAutoplayPolicyUserGestureRequired[]; | 3316 extern const char kAutoplayPolicyUserGestureRequired[]; |
3317 | 3317 |
3318 // Name of the about: flag for displaying the title of the omnibox match for | 3318 // Name of the about: flag for displaying the title of the omnibox match for |
3319 // current URL. | 3319 // current URL. |
3320 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3320 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
3321 | 3321 |
3322 // Description of the about: flag for displaying the title of the omnibox match | 3322 // Description of the about: flag for displaying the title of the omnibox match |
3323 // for current URL. | 3323 // for current URL. |
3324 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3324 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
3325 | 3325 |
| 3326 // Name & description for the heap profiling flag. |
| 3327 extern const char kEnableHeapProfilingName[]; |
| 3328 extern const char kEnableHeapProfilingDescription[]; |
| 3329 |
| 3330 // Descriptions of the different heap profiling modes. |
| 3331 extern const char kEnableHeapProfilingModePseudo[]; |
| 3332 extern const char kEnableHeapProfilingModeNative[]; |
| 3333 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3334 |
3326 } // namespace flag_descriptions | 3335 } // namespace flag_descriptions |
3327 | 3336 |
3328 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3337 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |