curtain_mode_wayland.cc 659 B

12345678910111213141516171819202122
  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 "remoting/host/curtain_mode.h"
  5. #include "base/callback.h"
  6. #include "base/notreached.h"
  7. #include "base/task/single_thread_task_runner.h"
  8. namespace remoting {
  9. // static
  10. std::unique_ptr<CurtainMode> CurtainMode::Create(
  11. scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
  12. scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
  13. base::WeakPtr<ClientSessionControl> client_session_control) {
  14. NOTIMPLEMENTED();
  15. return nullptr;
  16. }
  17. } // namespace remoting