fake_eche_connector.cc 800 B

1234567891011121314151617181920212223242526272829
  1. // Copyright 2021 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 "ash/webui/eche_app_ui/fake_eche_connector.h"
  5. namespace ash {
  6. namespace eche_app {
  7. FakeEcheConnector::FakeEcheConnector() = default;
  8. FakeEcheConnector::~FakeEcheConnector() = default;
  9. void FakeEcheConnector::SendMessage(const proto::ExoMessage message) {}
  10. void FakeEcheConnector::Disconnect() {}
  11. void FakeEcheConnector::SendAppsSetupRequest() {
  12. ++send_apps_setup_request_count_;
  13. }
  14. void FakeEcheConnector::GetAppsAccessStateRequest() {
  15. ++get_apps_access_state_request_count_;
  16. }
  17. void FakeEcheConnector::AttemptNearbyConnection() {
  18. ++attempt_nearby_connection_count_;
  19. }
  20. } // namespace eche_app
  21. } // namespace ash