From 552906b0f222c5d5dd11b9fd73829d510980461a Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Thu, 16 Jul 2020 11:45:35 +0200 Subject: BASELINE: Update Chromium to 83.0.4103.122 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie3a82f5bb0076eec2a7c6a6162326b4301ee291e Reviewed-by: Michael BrĂ¼ning --- chromium/base/win/scoped_hdc.h | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'chromium/base/win/scoped_hdc.h') diff --git a/chromium/base/win/scoped_hdc.h b/chromium/base/win/scoped_hdc.h index 890e34a82c5..4532d91bb2d 100644 --- a/chromium/base/win/scoped_hdc.h +++ b/chromium/base/win/scoped_hdc.h @@ -19,9 +19,7 @@ namespace win { // GetDC. class ScopedGetDC { public: - explicit ScopedGetDC(HWND hwnd) - : hwnd_(hwnd), - hdc_(GetDC(hwnd)) { + explicit ScopedGetDC(HWND hwnd) : hwnd_(hwnd), hdc_(GetDC(hwnd)) { if (hwnd_) { DCHECK(IsWindow(hwnd_)); DCHECK(hdc_); @@ -54,17 +52,11 @@ class CreateDCTraits { public: typedef HDC Handle; - static bool CloseHandle(HDC handle) { - return ::DeleteDC(handle) != FALSE; - } + static bool CloseHandle(HDC handle) { return ::DeleteDC(handle) != FALSE; } - static bool IsHandleValid(HDC handle) { - return handle != NULL; - } + static bool IsHandleValid(HDC handle) { return handle != NULL; } - static HDC NullHandle() { - return NULL; - } + static HDC NullHandle() { return NULL; } private: DISALLOW_IMPLICIT_CONSTRUCTORS(CreateDCTraits); -- cgit v1.2.1