blob: 8e92f8dd8ba535c56782e8aa14ccbd2168838318 [file] [log] [blame]
Scott Graham42c92f82017-08-18 19:45:581// Copyright 2017 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 "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) {
Scott Graham42c92f82017-08-18 19:45:5815 NOTREACHED();
16 return nullptr;
17}
18
19} // namespace ui