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

Unified Diff: Source/wtf/text/StringOperators.h

Issue 22572005: Remove all uses of the ASCIILiteral class. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm it from wtf Created 7 years, 4 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
« no previous file with comments | « Source/wtf/text/StringConcatenate.h ('k') | Source/wtf/text/WTFString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/StringOperators.h
diff --git a/Source/wtf/text/StringOperators.h b/Source/wtf/text/StringOperators.h
index a9887db154046a743ec014419fe5493cbe12a893..0a8ee93e3d8f5783c6e122b87eccabe340abfdb0 100644
--- a/Source/wtf/text/StringOperators.h
+++ b/Source/wtf/text/StringOperators.h
@@ -131,22 +131,6 @@ inline StringAppend<const UChar*, StringAppend<U, V> > operator+(const UChar* st
return StringAppend<const UChar*, StringAppend<U, V> >(string1, string2);
}
-inline StringAppend<ASCIILiteral, String> operator+(const ASCIILiteral& string1, const String& string2)
-{
- return StringAppend<ASCIILiteral, String>(string1, string2);
-}
-
-inline StringAppend<ASCIILiteral, AtomicString> operator+(const ASCIILiteral& string1, const AtomicString& string2)
-{
- return StringAppend<ASCIILiteral, AtomicString>(string1, string2);
-}
-
-template<typename U, typename V>
-inline StringAppend<ASCIILiteral, StringAppend<U, V> > operator+(const ASCIILiteral& string1, const StringAppend<U, V>& string2)
-{
- return StringAppend<ASCIILiteral, StringAppend<U, V> >(string1, string2);
-}
-
template<typename T>
StringAppend<String, T> operator+(const String& string1, T string2)
{
« no previous file with comments | « Source/wtf/text/StringConcatenate.h ('k') | Source/wtf/text/WTFString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698