| Index: third_party/WebKit/Source/core/css/CSSViewportRule.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSViewportRule.h b/third_party/WebKit/Source/core/css/CSSViewportRule.h
|
| index 1675a3aa8800cc4e9e05f84b2e955e29afe995f2..ebb191c0569afc68a2c0be2605120668225fa3e9 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSViewportRule.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSViewportRule.h
|
| @@ -43,9 +43,9 @@ class StyleRuleCSSStyleDeclaration;
|
| class CSSViewportRule final: public CSSRule {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet)
|
| + static RawPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet)
|
| {
|
| - return adoptRefWillBeNoop(new CSSViewportRule(viewportRule, sheet));
|
| + return new CSSViewportRule(viewportRule, sheet);
|
| }
|
| ~CSSViewportRule() override;
|
|
|
| @@ -61,8 +61,8 @@ private:
|
|
|
| CSSRule::Type type() const override { return VIEWPORT_RULE; }
|
|
|
| - RefPtrWillBeMember<StyleRuleViewport> m_viewportRule;
|
| - mutable RefPtrWillBeMember<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
|
| + Member<StyleRuleViewport> m_viewportRule;
|
| + mutable Member<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
|
| };
|
|
|
| DEFINE_CSS_RULE_TYPE_CASTS(CSSViewportRule, VIEWPORT_RULE);
|
|
|