Index: Source/core/css/StyleSheetList.cpp |
diff --git a/Source/core/css/StyleSheetList.cpp b/Source/core/css/StyleSheetList.cpp |
index 9c4508ac34d23338a3feaddb407f1995389b43a2..4700568e229f7aa3a2707c3db535b528d90c0cd9 100644 |
--- a/Source/core/css/StyleSheetList.cpp |
+++ b/Source/core/css/StyleSheetList.cpp |
@@ -44,13 +44,13 @@ inline const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& StyleSheetList:: |
if (!m_treeScope) |
return m_detachedStyleSheets; |
#endif |
- return document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope); |
+ return document()->styleEngine().styleSheetsForStyleSheetList(*m_treeScope); |
} |
#if !ENABLE(OILPAN) |
void StyleSheetList::detachFromDocument() |
{ |
- m_detachedStyleSheets = document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope); |
+ m_detachedStyleSheets = document()->styleEngine().styleSheetsForStyleSheetList(*m_treeScope); |
m_treeScope = nullptr; |
} |
#endif |