OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_POLICY_BRIDGE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_POLICY_ARC_POLICY_BRIDGE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_POLICY_BRIDGE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ARC_POLICY_ARC_POLICY_BRIDGE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "components/arc/arc_service.h" | 9 #include "components/arc/arc_service.h" |
10 #include "components/arc/common/policy.mojom.h" | 10 #include "components/arc/common/policy.mojom.h" |
11 #include "components/arc/instance_holder.h" | 11 #include "components/arc/instance_holder.h" |
12 #include "components/policy/core/common/policy_service.h" | 12 #include "components/policy/core/common/policy_service.h" |
13 #include "mojo/public/cpp/bindings/binding.h" | 13 #include "mojo/public/cpp/bindings/binding.h" |
14 | 14 |
15 namespace policy { | 15 namespace policy { |
16 class PolicyMap; | 16 class PolicyMap; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 58 |
59 mojo::Binding<PolicyHost> binding_; | 59 mojo::Binding<PolicyHost> binding_; |
60 policy::PolicyService* policy_service_ = nullptr; | 60 policy::PolicyService* policy_service_ = nullptr; |
61 bool is_managed_ = false; | 61 bool is_managed_ = false; |
62 | 62 |
63 DISALLOW_COPY_AND_ASSIGN(ArcPolicyBridge); | 63 DISALLOW_COPY_AND_ASSIGN(ArcPolicyBridge); |
64 }; | 64 }; |
65 | 65 |
66 } // namespace arc | 66 } // namespace arc |
67 | 67 |
68 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_POLICY_BRIDGE_H_ | 68 #endif // CHROME_BROWSER_CHROMEOS_ARC_POLICY_ARC_POLICY_BRIDGE_H_ |
OLD | NEW |