file_chooser_chromeos.cc 525 B

123456789101112131415161718
  1. // Copyright 2019 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 "base/task/sequenced_task_runner.h"
  6. #include "remoting/host/file_transfer/file_chooser.h"
  7. namespace remoting {
  8. std::unique_ptr<FileChooser> FileChooser::Create(
  9. scoped_refptr<base::SequencedTaskRunner> ui_task_runner,
  10. ResultCallback callback) {
  11. NOTIMPLEMENTED();
  12. return nullptr;
  13. }
  14. } // namespace remoting