| Index: base/string_util.h
|
| diff --git a/base/string_util.h b/base/string_util.h
|
| index ae8b93c22b77338211e7a66b006bf31a9775d420..ca028e16787e9dc0631824e0c175b8b76cfeea1c 100644
|
| --- a/base/string_util.h
|
| +++ b/base/string_util.h
|
| @@ -579,8 +579,9 @@ void SplitStringAlongWhitespace(const std::string& str,
|
| std::vector<std::string>* result);
|
|
|
| // Replace $1-$2-$3..$9 in the format string with |a|-|b|-|c|..|i| respectively.
|
| -// Additionally, $$ is replaced by $. The offsets parameter here can
|
| -// be NULL. This only allows you to use up to nine replacements.
|
| +// Additionally, any number of consecutive '$' characters is replaced by that
|
| +// number less one. Eg $$->$, $$$->$$, etc. The offsets parameter here can be
|
| +// NULL. This only allows you to use up to nine replacements.
|
| string16 ReplaceStringPlaceholders(const string16& format_string,
|
| const std::vector<string16>& subst,
|
| std::vector<size_t>* offsets);
|
|
|