| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 9eb2cdade25da88eefbeec1c447afefaf3000076..20c9915f96fe1868089fb26b22815a08f0c46cdd 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -146,7 +146,7 @@ class SerializedScriptValue;
|
| class Settings;
|
| class StyleResolver;
|
| class StyleSheet;
|
| -class StyleSheetCollections;
|
| +class StyleEngine;
|
| class StyleSheetContents;
|
| class StyleSheetList;
|
| class Text;
|
| @@ -441,7 +441,7 @@ public:
|
| // This is a DOM function.
|
| StyleSheetList* styleSheets();
|
|
|
| - StyleSheetCollections* styleSheetCollections() { return m_styleSheetCollections.get(); }
|
| + StyleEngine* styleEngine() { return m_StyleEngine.get(); }
|
|
|
| bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfterStylesheetsLoad; }
|
| void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAfterStylesheetsLoad = b; }
|
| @@ -1229,7 +1229,7 @@ private:
|
|
|
| MutationObserverOptions m_mutationObserverTypes;
|
|
|
| - OwnPtr<StyleSheetCollections> m_styleSheetCollections;
|
| + OwnPtr<StyleEngine> m_StyleEngine;
|
| RefPtr<StyleSheetList> m_styleSheetList;
|
|
|
| OwnPtr<FormController> m_formController;
|
|
|