blob: 767f7f6f51f5c77e226c7fb929c1212a4fd70a0e [file] [log] [blame]
Avi Drissman3e1a26c2022-09-15 20:26:031// Copyright 2017 The Chromium Authors
Scott Graham42c92f82017-08-18 19:45:582// 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 Wennborg8586102b2020-05-05 13:43:297#include "base/notreached.h"
Reid Kleckner4d3f21c2021-01-25 22:48:318#include "ui/shell_dialogs/select_file_policy.h"
Scott Graham42c92f82017-08-18 19:45:589
10namespace ui {
11
Scott Grahamcf098312017-08-23 19:40:4812SelectFileDialog* CreateSelectFileDialog(
13 SelectFileDialog::Listener* listener,
14 std::unique_ptr<SelectFilePolicy> policy) {
Peter Boströme4f1aef52024-10-29 23:42:0315 NOTREACHED();
Scott Graham42c92f82017-08-18 19:45:5816}
17
18} // namespace ui