| Index: base/debug/gdi_debug_util_win.cc
|
| diff --git a/base/debug/gdi_debug_util_win.cc b/base/debug/gdi_debug_util_win.cc
|
| index 3cd71f1191dd2e2346b9829e38fc65139684c787..2db10d1782290e7877e45291d6ffa80c87bb7c90 100644
|
| --- a/base/debug/gdi_debug_util_win.cc
|
| +++ b/base/debug/gdi_debug_util_win.cc
|
| @@ -75,11 +75,9 @@ void GDIBitmapAllocFailure(BITMAPINFOHEADER* header, HANDLE shared_section) {
|
| base::debug::Alias(&heigth);
|
| base::debug::Alias(&shared_section);
|
|
|
| - int num_user_handles = GetGuiResources(GetCurrentProcess(),
|
| - GR_USEROBJECTS);
|
| + DWORD num_user_handles = GetGuiResources(GetCurrentProcess(), GR_USEROBJECTS);
|
|
|
| - int num_gdi_handles = GetGuiResources(GetCurrentProcess(),
|
| - GR_GDIOBJECTS);
|
| + DWORD num_gdi_handles = GetGuiResources(GetCurrentProcess(), GR_GDIOBJECTS);
|
| if (num_gdi_handles == 0) {
|
| DWORD get_gui_resources_error = GetLastError();
|
| base::debug::Alias(&get_gui_resources_error);
|
|
|