| 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 3343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3354 | 3354 |
| 3355 // Name & description for the heap profiling flag. | 3355 // Name & description for the heap profiling flag. |
| 3356 extern const char kEnableHeapProfilingName[]; | 3356 extern const char kEnableHeapProfilingName[]; |
| 3357 extern const char kEnableHeapProfilingDescription[]; | 3357 extern const char kEnableHeapProfilingDescription[]; |
| 3358 | 3358 |
| 3359 // Descriptions of the different heap profiling modes. | 3359 // Descriptions of the different heap profiling modes. |
| 3360 extern const char kEnableHeapProfilingModePseudo[]; | 3360 extern const char kEnableHeapProfilingModePseudo[]; |
| 3361 extern const char kEnableHeapProfilingModeNative[]; | 3361 extern const char kEnableHeapProfilingModeNative[]; |
| 3362 extern const char kEnableHeapProfilingTaskProfiler[]; | 3362 extern const char kEnableHeapProfilingTaskProfiler[]; |
| 3363 | 3363 |
| 3364 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3365 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3366 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3367 |
| 3364 } // namespace flag_descriptions | 3368 } // namespace flag_descriptions |
| 3365 | 3369 |
| 3366 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3370 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |