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

Unified Diff: third_party/WebKit/Source/core/css/MediaQueryExp.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/MediaQueryExp.h
diff --git a/third_party/WebKit/Source/core/css/MediaQueryExp.h b/third_party/WebKit/Source/core/css/MediaQueryExp.h
index 39bbefce4052c53fc7493c52aaa0a5be6af6555c..266a3eb8fc34ce8b0d6c994228d3d3cbe34df990 100644
--- a/third_party/WebKit/Source/core/css/MediaQueryExp.h
+++ b/third_party/WebKit/Source/core/css/MediaQueryExp.h
@@ -82,7 +82,7 @@ struct MediaQueryExpValue {
class CORE_EXPORT MediaQueryExp : public GarbageCollectedFinalized<MediaQueryExp> {
public:
- static RawPtr<MediaQueryExp> createIfValid(const String& mediaFeature, const Vector<CSSParserToken, 4>&);
+ static MediaQueryExp* createIfValid(const String& mediaFeature, const Vector<CSSParserToken, 4>&);
~MediaQueryExp();
const String& mediaFeature() const { return m_mediaFeature; }
@@ -97,7 +97,7 @@ public:
String serialize() const;
- RawPtr<MediaQueryExp> copy() const { return new MediaQueryExp(*this); }
+ MediaQueryExp* copy() const { return new MediaQueryExp(*this); }
MediaQueryExp(const MediaQueryExp& other);
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQueryEvaluatorTest.cpp ('k') | third_party/WebKit/Source/core/css/MediaQueryExp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698