Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Unified Diff: ui/accessibility/platform/ax_platform_node_win.cc

Issue 2976913002: Better handle null delegates by returning instead of CHECK() (Closed)
Patch Set: Fixes Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/accessibility/platform/ax_platform_node_base.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/platform/ax_platform_node_win.cc
diff --git a/ui/accessibility/platform/ax_platform_node_win.cc b/ui/accessibility/platform/ax_platform_node_win.cc
index 15fc2119f192e9c21b866e8c9127bdfc7e79546c..ca9ef23a165e5e247c421f5fa581a03b3787fa71 100644
--- a/ui/accessibility/platform/ax_platform_node_win.cc
+++ b/ui/accessibility/platform/ax_platform_node_win.cc
@@ -1381,7 +1381,6 @@ STDMETHODIMP AXPlatformNodeWin::get_columnHeaderCells(
*n_column_header_cells = 0;
auto* table = GetTable();
if (!table) {
- NOTREACHED();
return S_FALSE;
}
@@ -1438,7 +1437,6 @@ STDMETHODIMP AXPlatformNodeWin::get_rowHeaderCells(IUnknown*** cell_accessibles,
*n_row_header_cells = 0;
auto* table = GetTable();
if (!table) {
- NOTREACHED();
return S_FALSE;
}
« no previous file with comments | « ui/accessibility/platform/ax_platform_node_base.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698