blob: cb087cbed756793c5caeecd071230dbeda42d8c8 [file] [log] [blame]
Gyuyoung Kim831b309c2025-03-13 02:07:471// 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
9namespace ui {
10
11SelectFileDialog* 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