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

Unified Diff: third_party/WebKit/Source/core/css/MediaQuery.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/MediaList.cpp ('k') | third_party/WebKit/Source/core/css/MediaQuery.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/MediaQuery.h
diff --git a/third_party/WebKit/Source/core/css/MediaQuery.h b/third_party/WebKit/Source/core/css/MediaQuery.h
index 08a997ad80362c34b99b5a6b14ca5fc4011a40d5..18719e787198567c65fc2148fb8daaf50dfa2368 100644
--- a/third_party/WebKit/Source/core/css/MediaQuery.h
+++ b/third_party/WebKit/Source/core/css/MediaQuery.h
@@ -48,8 +48,8 @@ public:
Only, Not, None
};
- static RawPtr<MediaQuery> create(RestrictorType, String mediaType, ExpressionHeapVector);
- static RawPtr<MediaQuery> createNotAll();
+ static MediaQuery* create(RestrictorType, String mediaType, ExpressionHeapVector);
+ static MediaQuery* createNotAll();
~MediaQuery();
@@ -59,7 +59,7 @@ public:
bool operator==(const MediaQuery& other) const;
String cssText() const;
- RawPtr<MediaQuery> copy() const { return new MediaQuery(*this); }
+ MediaQuery* copy() const { return new MediaQuery(*this); }
DECLARE_TRACE();
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaList.cpp ('k') | third_party/WebKit/Source/core/css/MediaQuery.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698