// Copyright 2015 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_GTK_SELECT_FILE_DIALOG_LINUX_GTK_H_ #define UI_GTK_SELECT_FILE_DIALOG_LINUX_GTK_H_ #include <vector> #include "base/containers/flat_map.h" #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "ui/base/glib/scoped_gsignal.h" #include "ui/gtk/gtk_util.h" #include "ui/shell_dialogs/select_file_dialog_linux.h" namespace gtk { // Implementation of SelectFileDialog that shows a Gtk common dialog for // choosing a file or folder. This acts as a modal dialog. class SelectFileDialogLinuxGtk : public ui::SelectFileDialogLinux, public aura::WindowObserver { … }; } // namespace gtk #endif // UI_GTK_SELECT_FILE_DIALOG_LINUX_GTK_H_