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

Unified Diff: third_party/WebKit/Source/core/css/StyleMedia.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
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleSet.cpp ('k') | third_party/WebKit/Source/core/css/StyleMedia.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/StyleMedia.h
diff --git a/third_party/WebKit/Source/core/css/StyleMedia.h b/third_party/WebKit/Source/core/css/StyleMedia.h
index 7c16c645565b89b25c114192e21e586b61d5db2b..0b4e461fe1a8e6c472b2c848d0efc6f28216643b 100644
--- a/third_party/WebKit/Source/core/css/StyleMedia.h
+++ b/third_party/WebKit/Source/core/css/StyleMedia.h
@@ -41,7 +41,7 @@ class StyleMedia final : public GarbageCollected<StyleMedia>, public DOMWindowPr
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(StyleMedia);
public:
- static RawPtr<StyleMedia> create(LocalFrame* frame) { return new StyleMedia(frame);}
+ static StyleMedia* create(LocalFrame* frame) { return new StyleMedia(frame);}
AtomicString type() const;
bool matchMedium(const String&) const;
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleSet.cpp ('k') | third_party/WebKit/Source/core/css/StyleMedia.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698