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

Unified Diff: third_party/WebKit/Source/core/css/StyleRuleImport.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/StyleRuleImport.h
diff --git a/third_party/WebKit/Source/core/css/StyleRuleImport.h b/third_party/WebKit/Source/core/css/StyleRuleImport.h
index d7cb9d153b33566617755918c99b1b9a415d4353..627a60763244d56bc8c7a027d528b63c968eebb4 100644
--- a/third_party/WebKit/Source/core/css/StyleRuleImport.h
+++ b/third_party/WebKit/Source/core/css/StyleRuleImport.h
@@ -33,10 +33,9 @@ class MediaQuerySet;
class StyleSheetContents;
class StyleRuleImport : public StyleRuleBase {
- USING_FAST_MALLOC_WILL_BE_REMOVED(StyleRuleImport);
- WILL_BE_USING_PRE_FINALIZER(StyleRuleImport, dispose);
+ USING_PRE_FINALIZER(StyleRuleImport, dispose);
public:
- static PassRefPtrWillBeRawPtr<StyleRuleImport> create(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>);
+ static RawPtr<StyleRuleImport> create(const String& href, RawPtr<MediaQuerySet>);
~StyleRuleImport();
@@ -75,23 +74,23 @@ private:
}
private:
- RawPtrWillBeMember<StyleRuleImport> m_ownerRule;
+ Member<StyleRuleImport> m_ownerRule;
};
void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
friend class ImportedStyleSheetClient;
- StyleRuleImport(const String& href, PassRefPtrWillBeRawPtr<MediaQuerySet>);
+ StyleRuleImport(const String& href, RawPtr<MediaQuerySet>);
void dispose();
- RawPtrWillBeMember<StyleSheetContents> m_parentStyleSheet;
+ Member<StyleSheetContents> m_parentStyleSheet;
ImportedStyleSheetClient m_styleSheetClient;
String m_strHref;
- RefPtrWillBeMember<MediaQuerySet> m_mediaQueries;
- RefPtrWillBeMember<StyleSheetContents> m_styleSheet;
- RefPtrWillBeMember<CSSStyleSheetResource> m_resource;
+ Member<MediaQuerySet> m_mediaQueries;
+ Member<StyleSheetContents> m_styleSheet;
+ Member<CSSStyleSheetResource> m_resource;
bool m_loading;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleRule.cpp ('k') | third_party/WebKit/Source/core/css/StyleRuleImport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698