// 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. #ifndef UI_BASE_TEST_TEST_DIALOG_MODEL_HOST_H_ #define UI_BASE_TEST_TEST_DIALOG_MODEL_HOST_H_ #include <algorithm> #include <memory> #include <string> #include "base/containers/flat_set.h" #include "ui/base/accelerators/accelerator.h" #include "ui/base/interaction/element_identifier.h" #include "ui/base/models/dialog_model_field.h" #include "ui/base/models/dialog_model_host.h" namespace ui { class TestDialogModelHost final : public DialogModelHost, public DialogModelFieldHost { … }; } // namespace ui #endif // UI_BASE_TEST_TEST_DIALOG_MODEL_HOST_H_