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

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, 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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSMediaRule.h ('k') | third_party/WebKit/Source/core/css/CSSPageRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..5048b8e3440bab4cadc369597f56ac365866e847 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);
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSMediaRule.h ('k') | third_party/WebKit/Source/core/css/CSSPageRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698