signal_strategy.cc 531 B

1234567891011121314151617181920
  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 "remoting/signaling/signal_strategy.h"
  5. namespace remoting {
  6. bool SignalStrategy::Listener::OnSignalStrategyIncomingMessage(
  7. const ftl::Id& sender_id,
  8. const std::string& sender_registration_id,
  9. const ftl::ChromotingMessage& message) {
  10. return false;
  11. }
  12. bool SignalStrategy::IsSignInError() const {
  13. return false;
  14. }
  15. } // namespace remoting