Scott Graham | 42c92f8 | 2017-08-18 19:45:58 | [diff] [blame] | 1 | // Copyright 2017 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 "ui/shell_dialogs/select_file_dialog.h" |
| 6 | |
Hans Wennborg | 8586102b | 2020-05-05 13:43:29 | [diff] [blame] | 7 | #include "base/notreached.h" |
Scott Graham | 42c92f8 | 2017-08-18 19:45:58 | [diff] [blame] | 8 | |
| 9 | namespace ui { |
| 10 | |
Scott Graham | cf09831 | 2017-08-23 19:40:48 | [diff] [blame] | 11 | SelectFileDialog* CreateSelectFileDialog( |
| 12 | SelectFileDialog::Listener* listener, |
| 13 | std::unique_ptr<SelectFilePolicy> policy) { |
Scott Graham | 42c92f8 | 2017-08-18 19:45:58 | [diff] [blame] | 14 | NOTREACHED(); |
| 15 | return nullptr; |
| 16 | } |
| 17 | |
| 18 | } // namespace ui |