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 31f0d9c58ef1eed0018840603665bc6745d7a8fb..d6da048d001685296ba58db89cea6ceffac72c02 100644 |
--- a/sandbox/win/src/sandbox_policy_base.h |
+++ b/sandbox/win/src/sandbox_policy_base.h |
@@ -72,6 +72,8 @@ class PolicyBase final : public TargetPolicy { |
const base::char16* handle_name) override; |
void AddHandleToShare(HANDLE handle) override; |
void SetLockdownDefaultDacl() override; |
+ void SetEnableOPMRedirection() override; |
+ bool GetEnableOPMRedirection() override; |
// Creates a Job object with the level specified in a previous call to |
// SetJobLevel(). |
@@ -169,6 +171,7 @@ class PolicyBase final : public TargetPolicy { |
// This list contains handles other than the stderr/stdout handles which are |
// shared with the target at times. |
base::HandlesToInheritVector handles_to_share_; |
+ bool enable_opm_redirection_; |
DISALLOW_COPY_AND_ASSIGN(PolicyBase); |
}; |