Chromium Code Reviews| Index: Source/core/css/StyleSheetContents.h |
| diff --git a/Source/core/css/StyleSheetContents.h b/Source/core/css/StyleSheetContents.h |
| index 1807fdf45143f8b8a746286ef4bb03596d47b60e..c389048f155696292bb20c76a372ae51def2980f 100644 |
| --- a/Source/core/css/StyleSheetContents.h |
| +++ b/Source/core/css/StyleSheetContents.h |
| @@ -95,7 +95,7 @@ public: |
| void setHasFontFaceRule(bool b) { m_hasFontFaceRule = b; } |
| bool hasFontFaceRule() const { return m_hasFontFaceRule; } |
| - void findFontFaceRules(Vector<const StyleRuleFontFace*>& fontFaceRules); |
| + void findFontFaceRules(WillBeHeapVector<RawPtrWillBeMember<const StyleRuleFontFace> >& fontFaceRules); |
| void parserAddNamespace(const AtomicString& prefix, const AtomicString& uri); |
| void parserAppendRule(PassRefPtrWillBeRawPtr<StyleRuleBase>); |
| @@ -114,7 +114,7 @@ public: |
| StyleSheetContents* parentStyleSheet() const; |
| StyleRuleImport* ownerRule() const { return m_ownerRule; } |
| - void clearOwnerRule() { m_ownerRule = 0; } |
| + void clearOwnerRule() { m_ownerRule = nullptr; } |
| // Note that href is the URL that started the redirect chain that led to |
| // this style sheet. This property probably isn't useful for much except |
| @@ -165,7 +165,7 @@ private: |
| void clearCharsetRule(); |
| - StyleRuleImport* m_ownerRule; |
| + Member<StyleRuleImport> m_ownerRule; |
|
sof
2014/02/25 16:18:01
RawPtrWillBeMember?
Vyacheslav Egorov (Chromium)
2014/02/25 16:22:28
Done.
[I want oilpan enabled asap :-)]
|
| String m_originalURL; |