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

Unified Diff: third_party/WebKit/Source/core/css/StyleMedia.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/StyleMedia.h
diff --git a/third_party/WebKit/Source/core/css/StyleMedia.h b/third_party/WebKit/Source/core/css/StyleMedia.h
index d158c64c5c8bff936f62c4283d750841cb18ba7c..7c16c645565b89b25c114192e21e586b61d5db2b 100644
--- a/third_party/WebKit/Source/core/css/StyleMedia.h
+++ b/third_party/WebKit/Source/core/css/StyleMedia.h
@@ -37,11 +37,11 @@ namespace blink {
class LocalFrame;
-class StyleMedia final : public RefCountedWillBeGarbageCollected<StyleMedia>, public DOMWindowProperty, public ScriptWrappable {
+class StyleMedia final : public GarbageCollected<StyleMedia>, public DOMWindowProperty, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(StyleMedia);
+ USING_GARBAGE_COLLECTED_MIXIN(StyleMedia);
public:
- static PassRefPtrWillBeRawPtr<StyleMedia> create(LocalFrame* frame) { return adoptRefWillBeNoop(new StyleMedia(frame));}
+ static RawPtr<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/SelectorFilter.h ('k') | third_party/WebKit/Source/core/css/StyleMedia.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698