| Index: net/base/net_string_util.h
|
| diff --git a/net/base/net_string_util.h b/net/base/net_string_util.h
|
| index 8e959a02f5efd61a03dcfb0acbc2a11f68f1e87f..6609ab8c876541503cffe53b174af80ecf486a1e 100644
|
| --- a/net/base/net_string_util.h
|
| +++ b/net/base/net_string_util.h
|
| @@ -18,17 +18,20 @@ extern const char* const kCharsetLatin1;
|
|
|
| // Converts |text| using |charset| to UTF-8, and writes it to |output|.
|
| // On failure, returns false and |output| is cleared.
|
| -bool ConvertToUtf8(const std::string& text, const char* charset,
|
| +bool ConvertToUtf8(const std::string& text,
|
| + const char* charset,
|
| std::string* output);
|
|
|
| // Converts |text| using |charset| to UTF-8, normalizes the result, and writes
|
| // it to |output|. On failure, returns false and |output| is cleared.
|
| -bool ConvertToUtf8AndNormalize(const std::string& text, const char* charset,
|
| +bool ConvertToUtf8AndNormalize(const std::string& text,
|
| + const char* charset,
|
| std::string* output);
|
|
|
| // Converts |text| using |charset| to UTF-16, and writes it to |output|.
|
| // On failure, returns false and |output| is cleared.
|
| -bool ConvertToUTF16(const std::string& text, const char* charset,
|
| +bool ConvertToUTF16(const std::string& text,
|
| + const char* charset,
|
| base::string16* output);
|
|
|
| // Converts |text| using |charset| to UTF-16, and writes it to |output|.
|
|
|