| Index: third_party/WebKit/Source/wtf/text/TextCodec.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextCodec.cpp b/third_party/WebKit/Source/wtf/text/TextCodec.cpp
|
| index 3cff46e96b9c7762e6ec3d610676de7e811828fc..7b6e724b284123bb733748b0d7d3770dda7ba9aa 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextCodec.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/TextCodec.cpp
|
| @@ -54,4 +54,10 @@ int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling
|
| return 0;
|
| }
|
|
|
| +bool TextCodec::shouldIncludeBOM()
|
| +{
|
| + // Do not include BOM by default.
|
| + return false;
|
| +}
|
| +
|
| } // namespace WTF
|
|
|