Tom Anderson | 16cc972 | 2022-02-14 06:59:40 | [diff] [blame^] | 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 | |
| 5 | #include "base/notreached.h" |
| 6 | #include "ui/shell_dialogs/select_file_dialog.h" |
| 7 | #include "ui/shell_dialogs/select_file_policy.h" |
| 8 | |
| 9 | namespace ui { |
| 10 | |
| 11 | SelectFileDialog* CreateSelectFileDialog( |
| 12 | SelectFileDialog::Listener* listener, |
| 13 | std::unique_ptr<SelectFilePolicy> policy) { |
| 14 | NOTIMPLEMENTED(); |
| 15 | return nullptr; |
| 16 | } |
| 17 | |
| 18 | } // namespace ui |