blob: a6f2b726be84e3f0fcfb620df6d79b0caccf37b8 [file] [log] [blame]
Avi Drissman3e1a26c2022-09-15 20:26:031// Copyright 2022 The Chromium Authors
Tom Anderson16cc9722022-02-14 06:59:402// 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
9namespace ui {
10
11SelectFileDialog* CreateSelectFileDialog(
12 SelectFileDialog::Listener* listener,
13 std::unique_ptr<SelectFilePolicy> policy) {
14 NOTIMPLEMENTED();
15 return nullptr;
16}
17
18} // namespace ui