policy_service.mojom 530 B

1234567891011121314
  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. module crosapi.mojom;
  5. // This interface is implemented by Ash-Chrome.
  6. // It includes the policy services that are needed by Lacros.
  7. [Stable, Uuid="ad6096f7-8e28-4166-bff4-2ee4e1d7a80f"]
  8. interface PolicyService {
  9. // Forces Ash to reload policy. The new policy should then be passed to Lacros
  10. // automatically through invalidation flows.
  11. ReloadPolicy@0();
  12. };