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

Unified Diff: third_party/WebKit/Source/core/css/StyleRuleImport.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/StyleRuleImport.h
diff --git a/third_party/WebKit/Source/core/css/StyleRuleImport.h b/third_party/WebKit/Source/core/css/StyleRuleImport.h
index 627a60763244d56bc8c7a027d528b63c968eebb4..705acf8553f261015fb344e38ede3d3ead8d6a43 100644
--- a/third_party/WebKit/Source/core/css/StyleRuleImport.h
+++ b/third_party/WebKit/Source/core/css/StyleRuleImport.h
@@ -35,7 +35,7 @@ class StyleSheetContents;
class StyleRuleImport : public StyleRuleBase {
USING_PRE_FINALIZER(StyleRuleImport, dispose);
public:
- static RawPtr<StyleRuleImport> create(const String& href, RawPtr<MediaQuerySet>);
+ static StyleRuleImport* create(const String& href, MediaQuerySet*);
~StyleRuleImport();
@@ -80,7 +80,7 @@ private:
void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*);
friend class ImportedStyleSheetClient;
- StyleRuleImport(const String& href, RawPtr<MediaQuerySet>);
+ StyleRuleImport(const String& href, MediaQuerySet*);
void dispose();
« 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