| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index e77df7a9640d27f11647f5906a7b574564f69d3a..8f7e31263fdb733f62dba377dda75595976f2b40 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -487,7 +487,6 @@ public:
|
| void clearAXObjectCache();
|
|
|
| // to get visually ordered hebrew and arabic pages right
|
| - void setVisuallyOrdered();
|
| bool visuallyOrdered() const { return m_visuallyOrdered; }
|
|
|
| DocumentLoader* loader() const;
|
| @@ -840,10 +839,10 @@ public:
|
| void finishedParsing();
|
|
|
| void setEncodingData(const DocumentEncodingData& newData);
|
| - const WTF::TextEncoding& encoding() const { return m_encodingData.encoding; }
|
| + const WTF::TextEncoding& encoding() const { return m_encodingData.encoding(); }
|
|
|
| - bool encodingWasDetectedHeuristically() const { return m_encodingData.wasDetectedHeuristically; }
|
| - bool sawDecodingError() const { return m_encodingData.sawDecodingError; }
|
| + bool encodingWasDetectedHeuristically() const { return m_encodingData.wasDetectedHeuristically(); }
|
| + bool sawDecodingError() const { return m_encodingData.sawDecodingError(); }
|
|
|
| void setAnnotatedRegionsDirty(bool f) { m_annotatedRegionsDirty = f; }
|
| bool annotatedRegionsDirty() const { return m_annotatedRegionsDirty; }
|
|
|