// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/views/test/dialog_test.h" #include "ui/views/test/widget_test.h" #include "ui/views/widget/widget.h" #include "ui/views/window/dialog_delegate.h" namespace views::test { namespace { DialogDelegate* DialogDelegateFor(Widget* widget) { … } } // namespace void AcceptDialog(Widget* widget) { … } void CancelDialog(Widget* widget) { … } } // namespace views::test