| Index: sandbox/win/src/sandbox_policy_base.h
|
| diff --git a/sandbox/win/src/sandbox_policy_base.h b/sandbox/win/src/sandbox_policy_base.h
|
| index a2704a06f7c81728a9b4ac439e42cefafd4c96b5..22004bebf746f3ff05f97e7daf09ed4b6a1f54f8 100644
|
| --- a/sandbox/win/src/sandbox_policy_base.h
|
| +++ b/sandbox/win/src/sandbox_policy_base.h
|
| @@ -28,7 +28,6 @@
|
|
|
| namespace sandbox {
|
|
|
| -class AppContainerAttributes;
|
| class LowLevelPolicy;
|
| class TargetProcess;
|
| struct PolicyGlobal;
|
| @@ -53,7 +52,6 @@ class PolicyBase final : public TargetPolicy {
|
| ResultCode SetIntegrityLevel(IntegrityLevel integrity_level) override;
|
| IntegrityLevel GetIntegrityLevel() const override;
|
| ResultCode SetDelayedIntegrityLevel(IntegrityLevel integrity_level) override;
|
| - ResultCode SetAppContainer(const wchar_t* sid) override;
|
| ResultCode SetCapability(const wchar_t* sid) override;
|
| ResultCode SetLowBox(const wchar_t* sid) override;
|
| ResultCode SetProcessMitigations(MitigationFlags flags) override;
|
| @@ -84,8 +82,6 @@ class PolicyBase final : public TargetPolicy {
|
| base::win::ScopedHandle* lockdown,
|
| base::win::ScopedHandle* lowbox);
|
|
|
| - const AppContainerAttributes* GetAppContainer() const;
|
| -
|
| PSID GetLowBoxSid() const;
|
|
|
| // Adds a target process to the internal list of targets. Internally a
|
| @@ -155,7 +151,6 @@ class PolicyBase final : public TargetPolicy {
|
| // given type.
|
| HandleCloser handle_closer_;
|
| std::vector<base::string16> capabilities_;
|
| - std::unique_ptr<AppContainerAttributes> appcontainer_list_;
|
| PSID lowbox_sid_;
|
| base::win::ScopedHandle lowbox_directory_;
|
| std::unique_ptr<Dispatcher> dispatcher_;
|
|
|