fake_connection_scheduler.cc 538 B

123456789101112131415161718
  1. // Copyright 2020 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/components/phonehub/fake_connection_scheduler.h"
  5. namespace ash {
  6. namespace phonehub {
  7. FakeConnectionScheduler::FakeConnectionScheduler() = default;
  8. FakeConnectionScheduler::~FakeConnectionScheduler() = default;
  9. void FakeConnectionScheduler::ScheduleConnectionNow() {
  10. ++num_schedule_connection_now_calls_;
  11. }
  12. } // namespace phonehub
  13. } // namespace ash