shell_dialog_stub.cc 501 B

123456789101112131415161718
  1. // 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. #include "base/notreached.h"
  5. #include "ui/shell_dialogs/select_file_dialog.h"
  6. #include "ui/shell_dialogs/select_file_policy.h"
  7. namespace ui {
  8. SelectFileDialog* CreateSelectFileDialog(
  9. SelectFileDialog::Listener* listener,
  10. std::unique_ptr<SelectFilePolicy> policy) {
  11. NOTIMPLEMENTED();
  12. return nullptr;
  13. }
  14. } // namespace ui