| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 6522841dce523e01a939a8c3b70c455b9598fa32..6519369e6296498c0fc126d65e62f210ec17faa5 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -1557,6 +1557,16 @@ void Document::updateStyleInvalidationIfNeeded()
|
| styleEngine().styleInvalidator().invalidate(*this);
|
| }
|
|
|
| +bool Document::attemptedToDetermineEncodingFromContentSniffing() const
|
| +{
|
| + return m_encodingData.attemptedToDetermineEncodingFromContentSniffing();
|
| +}
|
| +
|
| +bool Document::encodingWasDetectedFromContentSniffing() const
|
| +{
|
| + return m_encodingData.encodingWasDetectedFromContentSniffing();
|
| +}
|
| +
|
| void Document::setupFontBuilder(ComputedStyle& documentStyle)
|
| {
|
| FontBuilder fontBuilder(*this);
|
|
|