| Index: sandbox/win/src/app_container.h
|
| diff --git a/sandbox/win/src/app_container.h b/sandbox/win/src/app_container.h
|
| index 8125d706fb4addab8d9b43a5db37d723dd9cfaae..82bce0004ff9c4171ffe5d7b644cae1ec02c399f 100644
|
| --- a/sandbox/win/src/app_container.h
|
| +++ b/sandbox/win/src/app_container.h
|
| @@ -32,16 +32,12 @@ class AppContainerAttributes {
|
| ResultCode SetAppContainer(const base::string16& app_container_sid,
|
| const std::vector<base::string16>& capabilities);
|
|
|
| - // Updates the proc_thred attribute list of the provided startup_information
|
| - // with the app container related data.
|
| - // WARNING: startup_information just points back to our internal memory, so
|
| - // the lifetime of this object has to be greater than the lifetime of the
|
| - // provided startup_information.
|
| - ResultCode ShareForStartup(
|
| - base::win::StartupInformation* startup_information) const;
|
| -
|
| bool HasAppContainer() const;
|
|
|
| + // Returns security capabilities structure, which is populated when you call
|
| + // SetAppContainer.
|
| + const SECURITY_CAPABILITIES& GetCapabilities() const;
|
| +
|
| private:
|
| SECURITY_CAPABILITIES capabilities_;
|
| std::vector<SID_AND_ATTRIBUTES> attributes_;
|
|
|