| Index: sandbox/win/src/policy_low_level.cc
|
| diff --git a/sandbox/win/src/policy_low_level.cc b/sandbox/win/src/policy_low_level.cc
|
| index 686caa197b0ee67918eddd3e9bf1b748cd739fda..6df728ddc6f7c218e7c518fec46e19cfbe568094 100644
|
| --- a/sandbox/win/src/policy_low_level.cc
|
| +++ b/sandbox/win/src/policy_low_level.cc
|
| @@ -151,7 +151,7 @@ PolicyRule::PolicyRule(const PolicyRule& other) {
|
| bool PolicyRule::GenStringOpcode(RuleType rule_type,
|
| StringMatchOptions match_opts,
|
| uint16 parameter, int state, bool last_call,
|
| - int* skip_count, std::wstring* fragment) {
|
| + int* skip_count, base::string16* fragment) {
|
|
|
| // The last opcode must:
|
| // 1) Always clear the context.
|
| @@ -226,7 +226,7 @@ bool PolicyRule::AddStringMatch(RuleType rule_type, int16 parameter,
|
| uint32 last_char = kLastCharIsNone;
|
| int state = PENDING_NONE;
|
| int skip_count = 0; // counts how many '?' we have seen in a row.
|
| - std::wstring fragment; // accumulates the non-wildcard part of the string.
|
| + base::string16 fragment; // accumulates the non-wildcard part.
|
|
|
| while (L'\0' != *current_char) {
|
| switch (*current_char) {
|
|
|