// 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. // // This file implements common select dialog functionality between GTK and KDE. #ifndef UI_SHELL_DIALOGS_SELECT_FILE_DIALOG_LINUX_H_ #define UI_SHELL_DIALOGS_SELECT_FILE_DIALOG_LINUX_H_ #include <stddef.h> #include <memory> #include <set> #include "base/nix/xdg_util.h" #include "ui/aura/window.h" #include "ui/shell_dialogs/select_file_dialog.h" #include "ui/shell_dialogs/select_file_policy.h" #include "ui/shell_dialogs/shell_dialogs_export.h" namespace ui { // Shared implementation SelectFileDialog used on Linux class SHELL_DIALOGS_EXPORT SelectFileDialogLinux : public SelectFileDialog { … }; } // namespace ui #endif // UI_SHELL_DIALOGS_SELECT_FILE_DIALOG_LINUX_H_