chromium/chrome/browser/ui/views/file_system_access/file_system_access_test_utils.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_VIEWS_FILE_SYSTEM_ACCESS_FILE_SYSTEM_ACCESS_TEST_UTILS_H_
#define CHROME_BROWSER_UI_VIEWS_FILE_SYSTEM_ACCESS_FILE_SYSTEM_ACCESS_TEST_UTILS_H_

#include <vector>

#include "ui/shell_dialogs/select_file_dialog.h"
#include "ui/shell_dialogs/select_file_dialog_factory.h"
#include "ui/shell_dialogs/select_file_policy.h"

// A fake ui::SelectFileDialog that selects one or more pre-determined files.
class SelectPredeterminedFileDialog : public ui::SelectFileDialog {};

class SelectPredeterminedFileDialogFactory
    : public ui::SelectFileDialogFactory {};

#endif  // CHROME_BROWSER_UI_VIEWS_FILE_SYSTEM_ACCESS_FILE_SYSTEM_ACCESS_TEST_UTILS_H_