Avi Drissman | 3e1a26c | 2022-09-15 20:26:03 | [diff] [blame] | 1 | // Copyright 2017 The Chromium Authors |
Scott Graham | 42c92f8 | 2017-08-18 19:45:58 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "ui/shell_dialogs/select_file_dialog.h" |
| 6 | |
Hans Wennborg | 8586102b | 2020-05-05 13:43:29 | [diff] [blame] | 7 | #include "base/notreached.h" |
Reid Kleckner | 4d3f21c | 2021-01-25 22:48:31 | [diff] [blame] | 8 | #include "ui/shell_dialogs/select_file_policy.h" |
Scott Graham | 42c92f8 | 2017-08-18 19:45:58 | [diff] [blame] | 9 | |
| 10 | namespace ui { |
| 11 | |
Scott Graham | cf09831 | 2017-08-23 19:40:48 | [diff] [blame] | 12 | SelectFileDialog* CreateSelectFileDialog( |
| 13 | SelectFileDialog::Listener* listener, |
| 14 | std::unique_ptr<SelectFilePolicy> policy) { |
Peter Boström | e4f1aef5 | 2024-10-29 23:42:03 | [diff] [blame] | 15 | NOTREACHED(); |
Scott Graham | 42c92f8 | 2017-08-18 19:45:58 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | } // namespace ui |