[email protected] | 4ddbd142 | 2014-02-11 05:12:07 | [diff] [blame] | 1 | // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef BASE_DEBUG_GDI_DEBUG_UTIL_WIN_H_ |
| 6 | #define BASE_DEBUG_GDI_DEBUG_UTIL_WIN_H_ |
| 7 | |
| 8 | #include <windows.h> |
| 9 | |
| 10 | #include "base/base_export.h" |
| 11 | |
| 12 | namespace base { |
| 13 | namespace debug { |
| 14 | |
anpol | 80e1d0d | 2016-11-02 11:07:03 | [diff] [blame] | 15 | // Crashes the process, using base::debug::Alias to leave valuable debugging |
| 16 | // information in the crash dump. Pass values for |header| and |shared_section| |
| 17 | // in the event of a bitmap allocation failure, to gather information about |
| 18 | // those as well. |
| 19 | void BASE_EXPORT CollectGDIUsageAndDie(BITMAPINFOHEADER* header = nullptr, |
| 20 | HANDLE shared_section = nullptr); |
[email protected] | 4ddbd142 | 2014-02-11 05:12:07 | [diff] [blame] | 21 | |
| 22 | } // namespace debug |
| 23 | } // namespace base |
| 24 | |
| 25 | #endif // BASE_DEBUG_GDI_DEBUG_UTIL_WIN_H_ |