summaryrefslogtreecommitdiffstats
path: root/chromium/components/policy/core/common/cloud/policy_invalidation_scope.h
blob: afae6654f9857c7b3e9f437ce6b98d02cf63fef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_INVALIDATION_SCOPE_H_
#define COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_INVALIDATION_SCOPE_H_

namespace policy {

// Specifies a scope of a policy or remote command which handler is
// responsible for.
enum class PolicyInvalidationScope {
  kUser,
  kDevice,
  kDeviceLocalAccount,
  kCBCM,
};

}  // namespace policy

#endif  // COMPONENTS_POLICY_CORE_COMMON_CLOUD_POLICY_INVALIDATION_SCOPE_H_