Index: third_party/WebKit/Source/wtf/text/StringBuilder.h |
diff --git a/third_party/WebKit/Source/wtf/text/StringBuilder.h b/third_party/WebKit/Source/wtf/text/StringBuilder.h |
index 4166a553d70c4fd78051c4a7891504488061606e..527efaea5ffc88f308e2ac323090b805875e4d97 100644 |
--- a/third_party/WebKit/Source/wtf/text/StringBuilder.h |
+++ b/third_party/WebKit/Source/wtf/text/StringBuilder.h |
@@ -141,6 +141,9 @@ |
append(U16_TRAIL(c)); |
} |
+ template<unsigned charactersCount> |
+ ALWAYS_INLINE void appendLiteral(const char (&characters)[charactersCount]) { append(characters, charactersCount - 1); } |
+ |
void appendNumber(int); |
void appendNumber(unsigned); |
void appendNumber(long); |