| 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 179cb6c34288bb6bd0c1240e85c385acb6cfd11e..540f261cdde6161fe9911cd5751f6b3a6899bc7c 100644
|
| --- a/sandbox/win/src/sandbox_policy_base.h
|
| +++ b/sandbox/win/src/sandbox_policy_base.h
|
| @@ -45,6 +45,7 @@ class PolicyBase : public Dispatcher, public TargetPolicy {
|
| virtual TokenLevel GetLockdownTokenLevel() const OVERRIDE;
|
| virtual ResultCode SetJobLevel(JobLevel job_level,
|
| uint32 ui_exceptions) OVERRIDE;
|
| + virtual ResultCode SetJobMemoryLimit(size_t memory_limit) OVERRIDE;
|
| virtual ResultCode SetAlternateDesktop(bool alternate_winstation) OVERRIDE;
|
| virtual base::string16 GetAlternateDesktop() const OVERRIDE;
|
| virtual ResultCode CreateAlternateDesktop(bool alternate_winstation) OVERRIDE;
|
| @@ -127,6 +128,7 @@ class PolicyBase : public Dispatcher, public TargetPolicy {
|
| TokenLevel initial_level_;
|
| JobLevel job_level_;
|
| uint32 ui_exceptions_;
|
| + size_t memory_limit_;
|
| bool use_alternate_desktop_;
|
| bool use_alternate_winstation_;
|
| // Helps the file system policy initialization.
|
|
|