| Index: views/window/dialog_client_view.cc
|
| diff --git a/views/window/dialog_client_view.cc b/views/window/dialog_client_view.cc
|
| index 08c833b8e3a06d9ca9d7d2d317db95901a187671..562c8cca4497c0f52f40665c94cc879f3ca42e56 100644
|
| --- a/views/window/dialog_client_view.cc
|
| +++ b/views/window/dialog_client_view.cc
|
| @@ -312,6 +312,9 @@ const DialogClientView* DialogClientView::AsDialogClientView() const {
|
| void DialogClientView::OnPaint(gfx::Canvas* canvas) {
|
| #if defined(OS_WIN)
|
| FillViewWithSysColor(canvas, this, GetSysColor(COLOR_3DFACE));
|
| +#elif defined(USE_WAYLAND)
|
| + SkColor sk_color = SkColorSetARGB(200, 255, 255, 255);
|
| + canvas->FillRectInt(sk_color, 0, 0, width(), height());
|
| #else
|
| GtkWidget* widget = GetWidget()->GetNativeView();
|
| if (GTK_IS_WINDOW(widget)) {
|
|
|