Index: chrome/browser/ui/libgtkui/native_theme_gtk3.cc |
diff --git a/chrome/browser/ui/libgtkui/native_theme_gtk3.cc b/chrome/browser/ui/libgtkui/native_theme_gtk3.cc |
index 7b8028a20ff6285325882817bc0021e6d36281b3..113951a284036bdf42f25bb867b3dd81952c2fa2 100644 |
--- a/chrome/browser/ui/libgtkui/native_theme_gtk3.cc |
+++ b/chrome/browser/ui/libgtkui/native_theme_gtk3.cc |
@@ -539,7 +539,7 @@ void NativeThemeGtk3::PaintMenuSeparator( |
gtk_style_context_get_border(context, state, &border); |
gtk_style_context_get_padding(context, state, &padding); |
int min_height = 1; |
- gtk_style_context_get(context, state, "min-height", &min_height, NULL); |
+ gtk_style_context_get(context, state, "min-height", &min_height, nullptr); |
int w = rect.width() - margin.left - margin.right; |
int h = std::max( |
min_height + padding.top + padding.bottom + border.top + border.bottom, |