blob: 908cc4ed51298728abd759524e846f6bde35f48e [file] [log] [blame]
Tom Anderson16cc9722022-02-14 06:59:401// 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
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