select_file_dialog_linux_kde.h 726 B

12345678910111213141516171819202122232425
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef UI_SHELL_DIALOGS_SELECT_FILE_DIALOG_LINUX_KDE_H_
  5. #define UI_SHELL_DIALOGS_SELECT_FILE_DIALOG_LINUX_KDE_H_
  6. #include <string>
  7. #include "base/nix/xdg_util.h"
  8. #include "ui/shell_dialogs/select_file_dialog.h"
  9. namespace ui {
  10. class SelectFileDialog;
  11. SelectFileDialog* NewSelectFileDialogLinuxKde(
  12. SelectFileDialog::Listener* listener,
  13. std::unique_ptr<ui::SelectFilePolicy> policy,
  14. base::nix::DesktopEnvironment desktop,
  15. const std::string& kdialog_version);
  16. } // namespace ui
  17. #endif // UI_SHELL_DIALOGS_SELECT_FILE_DIALOG_LINUX_KDE_H_