fake_account_status_change_delegate_notifier.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. // Copyright 2018 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. #ifndef ASH_SERVICES_MULTIDEVICE_SETUP_FAKE_ACCOUNT_STATUS_CHANGE_DELEGATE_NOTIFIER_H_
  5. #define ASH_SERVICES_MULTIDEVICE_SETUP_FAKE_ACCOUNT_STATUS_CHANGE_DELEGATE_NOTIFIER_H_
  6. #include "ash/services/multidevice_setup/account_status_change_delegate_notifier.h"
  7. namespace ash {
  8. namespace multidevice_setup {
  9. // Test AccountStatusChangeDelegateNotifier implementation.
  10. class FakeAccountStatusChangeDelegateNotifier
  11. : public AccountStatusChangeDelegateNotifier {
  12. public:
  13. FakeAccountStatusChangeDelegateNotifier() = default;
  14. FakeAccountStatusChangeDelegateNotifier(
  15. const FakeAccountStatusChangeDelegateNotifier&) = delete;
  16. FakeAccountStatusChangeDelegateNotifier& operator=(
  17. const FakeAccountStatusChangeDelegateNotifier&) = delete;
  18. ~FakeAccountStatusChangeDelegateNotifier() override = default;
  19. using AccountStatusChangeDelegateNotifier::delegate;
  20. };
  21. } // namespace multidevice_setup
  22. } // namespace ash
  23. #endif // ASH_SERVICES_MULTIDEVICE_SETUP_FAKE_ACCOUNT_STATUS_CHANGE_DELEGATE_NOTIFIER_H_