From a2d993c9b48809128ca0d8a6c61f4c5ff7c8e385 Mon Sep 17 00:00:00 2001 From: Michaela Laurencin <35157522+mlaurencin@users.noreply.github.com> Date: Tue, 19 Oct 2021 09:19:04 -0700 Subject: [PATCH] fix: remove 'NOTREACHED()' from 'GetWindowResizeEdge' (#31470) --- shell/browser/native_window_views_win.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/shell/browser/native_window_views_win.cc b/shell/browser/native_window_views_win.cc index 866681561723..05335aed07d6 100644 --- a/shell/browser/native_window_views_win.cc +++ b/shell/browser/native_window_views_win.cc @@ -158,7 +158,6 @@ gfx::ResizeEdge GetWindowResizeEdge(WPARAM param) { case WMSZ_BOTTOMRIGHT: return gfx::ResizeEdge::kBottomRight; default: - NOTREACHED(); return gfx::ResizeEdge::kBottomRight; } }