diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-02-07 11:13:44 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-07 11:13:44 +0100 |
commit | 4470f78754246bbd134b65cad2e0a9638418677f (patch) | |
tree | 1a7c05e68edd287d1996da1a9610b33525d53a92 /dom/base/nsContentUtils.h | |
parent | 7686bceecff17f91758c8c6547a78e71ff3a8c38 (diff) | |
download | UXP-4470f78754246bbd134b65cad2e0a9638418677f.tar UXP-4470f78754246bbd134b65cad2e0a9638418677f.tar.gz UXP-4470f78754246bbd134b65cad2e0a9638418677f.tar.lz UXP-4470f78754246bbd134b65cad2e0a9638418677f.tar.xz UXP-4470f78754246bbd134b65cad2e0a9638418677f.zip |
Avoid unnecessary string creation.
Diffstat (limited to 'dom/base/nsContentUtils.h')
-rw-r--r-- | dom/base/nsContentUtils.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/dom/base/nsContentUtils.h b/dom/base/nsContentUtils.h index 278fbd008..f688eeecf 100644 --- a/dom/base/nsContentUtils.h +++ b/dom/base/nsContentUtils.h @@ -554,9 +554,17 @@ public: * string (meaning UTF-8) */ static nsresult ConvertStringFromEncoding(const nsACString& aEncoding, - const nsACString& aInput, + const char* aInput, + uint32_t aInputLen, nsAString& aOutput); + static nsresult ConvertStringFromEncoding(const nsACString& aEncoding, + const nsACString& aInput, + nsAString& aOutput) { + return ConvertStringFromEncoding( + aEncoding, aInput.BeginReading(), aInput.Length(), aOutput); + } + /** * Determine whether a buffer begins with a BOM for UTF-8, UTF-16LE, * UTF-16BE |