| Index: sandbox/win/src/restricted_token.h
|
| diff --git a/sandbox/win/src/restricted_token.h b/sandbox/win/src/restricted_token.h
|
| index 4327856f364055444547fcb7428bdf5273cc01a2..6d8e5506918d3b13767aa95d7aee260b2daa37eb 100644
|
| --- a/sandbox/win/src/restricted_token.h
|
| +++ b/sandbox/win/src/restricted_token.h
|
| @@ -9,6 +9,7 @@
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/strings/string16.h"
|
| #include "sandbox/win/src/restricted_token_utils.h"
|
| #include "sandbox/win/src/security_level.h"
|
| #include "sandbox/win/src/sid.h"
|
| @@ -119,11 +120,11 @@ class RestrictedToken {
|
| // the error.
|
| //
|
| // Sample usage:
|
| - // std::vector<std::wstring> privilege_exceptions;
|
| + // std::vector<base::string16> privilege_exceptions;
|
| // privilege_exceptions.push_back(SE_CHANGE_NOTIFY_NAME);
|
| // restricted_token.DeleteAllPrivileges(&privilege_exceptions);
|
| unsigned DeleteAllPrivileges(
|
| - const std::vector<std::wstring> *exceptions);
|
| + const std::vector<base::string16> *exceptions);
|
|
|
| // Adds a privilege to the list of privileges to remove in the restricted
|
| // token.
|
|
|