| 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 6520915b866617c694aabe54d085e6e3ac15a24a..cd30ebacbcefc4e08a044c4a9087d9107508c89b 100644
|
| --- a/sandbox/win/src/sandbox_policy_base.h
|
| +++ b/sandbox/win/src/sandbox_policy_base.h
|
| @@ -61,6 +61,7 @@ class PolicyBase final : public TargetPolicy {
|
| MitigationFlags GetProcessMitigations() override;
|
| ResultCode SetDelayedProcessMitigations(MitigationFlags flags) override;
|
| MitigationFlags GetDelayedProcessMitigations() const override;
|
| + void SetDisconnectCsrss() override;
|
| void SetStrictInterceptions() override;
|
| ResultCode SetStdoutHandle(HANDLE handle) override;
|
| ResultCode SetStderrHandle(HANDLE handle) override;
|
| @@ -145,6 +146,7 @@ class PolicyBase final : public TargetPolicy {
|
| IntegrityLevel delayed_integrity_level_;
|
| MitigationFlags mitigations_;
|
| MitigationFlags delayed_mitigations_;
|
| + bool is_csrss_connected_;
|
| // Object in charge of generating the low level policy.
|
| LowLevelPolicy* policy_maker_;
|
| // Memory structure that stores the low level policy.
|
|
|