Gyuyoung Kim | 831b309c | 2025-03-13 02:07:47 | [diff] [blame] | 1 | // Copyright 2025 The Chromium Authors |
| 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/notimplemented.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 | // TODO(crbug.com/391914246): Implement the CreateSelectFileDialog when tvOS |
| 15 | // actually requires the functionality. |
| 16 | TVOS_NOT_YET_IMPLEMENTED(); |
| 17 | return nullptr; |
| 18 | } |
| 19 | |
| 20 | } // namespace ui |