Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: third_party/WebKit/Source/core/css/CSSViewportRule.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698