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

Unified Diff: third_party/WebKit/Source/core/css/CSSNamespaceRule.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, 10 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/CSSNamespaceRule.h
diff --git a/third_party/WebKit/Source/core/css/CSSNamespaceRule.h b/third_party/WebKit/Source/core/css/CSSNamespaceRule.h
index 547eadf51fa3d6a81abd13746b709528f1ce20f8..c236417b20b7705a2d02f7177e24ceebc1a2771c 100644
--- a/third_party/WebKit/Source/core/css/CSSNamespaceRule.h
+++ b/third_party/WebKit/Source/core/css/CSSNamespaceRule.h
@@ -15,9 +15,9 @@ class StyleRuleNamespace;
class CSSNamespaceRule final : public CSSRule {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<CSSNamespaceRule> create(StyleRuleNamespace* rule, CSSStyleSheet* sheet)
+ static RawPtr<CSSNamespaceRule> create(StyleRuleNamespace* rule, CSSStyleSheet* sheet)
{
- return adoptRefWillBeNoop(new CSSNamespaceRule(rule, sheet));
+ return (new CSSNamespaceRule(rule, sheet));
}
~CSSNamespaceRule() override;
@@ -35,7 +35,7 @@ private:
CSSRule::Type type() const override { return NAMESPACE_RULE; }
- RefPtrWillBeMember<StyleRuleNamespace> m_namespaceRule;
+ Member<StyleRuleNamespace> m_namespaceRule;
};
DEFINE_CSS_RULE_TYPE_CASTS(CSSNamespaceRule, NAMESPACE_RULE);

Powered by Google App Engine
This is Rietveld 408576698