Chromium Code Reviews| Index: Source/core/css/StyleSheetList.h |
| diff --git a/Source/core/css/StyleSheetList.h b/Source/core/css/StyleSheetList.h |
| index c9802b039b16d7e3e4c19f81168fa2a67b7f41db..5786cfa0d1143d7b16cb685e380bf44793c2a525 100644 |
| --- a/Source/core/css/StyleSheetList.h |
| +++ b/Source/core/css/StyleSheetList.h |
| @@ -52,10 +52,10 @@ public: |
| private: |
| StyleSheetList(TreeScope*); |
| - const Vector<RefPtr<StyleSheet> >& styleSheets(); |
| + const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& styleSheets(); |
| TreeScope* m_treeScope; |
|
haraken
2014/03/12 11:08:21
This raw pointer looks safe since it's cleared in
Erik Corry
2014/03/12 11:48:57
Done.
|
| - Vector<RefPtr<StyleSheet> > m_detachedStyleSheets; |
| + WillBeHeapVector<RefPtrWillBeMember<StyleSheet> > m_detachedStyleSheets; |
| }; |
| } // namespace WebCore |