Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1223)

Unified Diff: third_party/WebKit/Source/wtf/text/WTFString.h

Issue 1845363003: String replaceWithLiteral should just use strlen, also rename to replace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another NUL fix. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/wtf/text/WTFString.h
diff --git a/third_party/WebKit/Source/wtf/text/WTFString.h b/third_party/WebKit/Source/wtf/text/WTFString.h
index 8d7ead9dbf1dcbf37e0c9666c22cb51f544a60ba..356f4287acd2e039d544fe529a86dc5dc1331654 100644
--- a/third_party/WebKit/Source/wtf/text/WTFString.h
+++ b/third_party/WebKit/Source/wtf/text/WTFString.h
@@ -320,12 +320,11 @@ public:
return *this;
}
- template<unsigned charactersCount>
- ALWAYS_INLINE String& replaceWithLiteral(UChar a, const char (&characters)[charactersCount])
+ ALWAYS_INLINE String& replace(UChar a, const char* characters)
{
+ ASSERT(characters);
if (m_impl)
- m_impl = m_impl->replace(a, characters, charactersCount - 1);
-
+ m_impl = m_impl->replace(a, characters, strlen(characters));
return *this;
}
« no previous file with comments | « third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp ('k') | third_party/WebKit/Source/wtf/text/WTFStringTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698