blob: c60f0c9bc77fe6e9e87bca5332ded7842cd23562 [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"
Scott Graham42c92f82017-08-18 19:45:588
9namespace ui {
10
Scott Grahamcf098312017-08-23 19:40:4811SelectFileDialog* CreateSelectFileDialog(
12 SelectFileDialog::Listener* listener,
13 std::unique_ptr<SelectFilePolicy> policy) {
Scott Graham42c92f82017-08-18 19:45:5814 NOTREACHED();
15 return nullptr;
16}
17
18} // namespace ui