enterprise_domain_observer.h 588 B

123456789101112131415161718192021
  1. // Copyright (c) 2012 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_SYSTEM_ENTERPRISE_ENTERPRISE_DOMAIN_OBSERVER_H_
  5. #define ASH_SYSTEM_ENTERPRISE_ENTERPRISE_DOMAIN_OBSERVER_H_
  6. namespace ash {
  7. class EnterpriseDomainObserver {
  8. public:
  9. virtual ~EnterpriseDomainObserver() {}
  10. virtual void OnDeviceEnterpriseInfoChanged() = 0;
  11. virtual void OnEnterpriseAccountDomainChanged() = 0;
  12. };
  13. } // namespace ash
  14. #endif // ASH_SYSTEM_ENTERPRISE_ENTERPRISE_DOMAIN_OBSERVER_H_