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

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

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/CSSRuleList.h
diff --git a/third_party/WebKit/Source/core/css/CSSRuleList.h b/third_party/WebKit/Source/core/css/CSSRuleList.h
index 50e54660075516832bde922e25ec393fd60fba78..e22ee18ac85bc89c4191eec714e2f2592dfe21d3 100644
--- a/third_party/WebKit/Source/core/css/CSSRuleList.h
+++ b/third_party/WebKit/Source/core/css/CSSRuleList.h
@@ -57,7 +57,7 @@ protected:
class StaticCSSRuleList final : public CSSRuleList {
public:
- static RawPtr<StaticCSSRuleList> create()
+ static StaticCSSRuleList* create()
{
return new StaticCSSRuleList();
}
@@ -89,7 +89,7 @@ private:
template <class Rule>
class LiveCSSRuleList final : public CSSRuleList {
public:
- static RawPtr<LiveCSSRuleList> create(Rule* rule)
+ static LiveCSSRuleList* create(Rule* rule)
{
return new LiveCSSRuleList(rule);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSReflectValue.h ('k') | third_party/WebKit/Source/core/css/CSSSVGDocumentValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698