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

Unified Diff: third_party/WebKit/Source/core/css/MediaValuesCached.cpp

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/MediaValuesCached.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaValuesCached.cpp b/third_party/WebKit/Source/core/css/MediaValuesCached.cpp
index b935d76626bc5a65220dc2e88ae701d9a90943da..5879bf1ee7afaf202a5075a9ebee105d64042920 100644
--- a/third_party/WebKit/Source/core/css/MediaValuesCached.cpp
+++ b/third_party/WebKit/Source/core/css/MediaValuesCached.cpp
@@ -42,12 +42,12 @@ MediaValuesCached::MediaValuesCachedData::MediaValuesCachedData(Document& docume
}
}
-RawPtr<MediaValuesCached> MediaValuesCached::create()
+MediaValuesCached* MediaValuesCached::create()
{
return new MediaValuesCached();
}
-RawPtr<MediaValuesCached> MediaValuesCached::create(const MediaValuesCachedData& data)
+MediaValuesCached* MediaValuesCached::create(const MediaValuesCachedData& data)
{
return new MediaValuesCached(data);
}
@@ -61,7 +61,7 @@ MediaValuesCached::MediaValuesCached(const MediaValuesCachedData& data)
{
}
-RawPtr<MediaValues> MediaValuesCached::copy() const
+MediaValues* MediaValuesCached::copy() const
{
return new MediaValuesCached(m_data);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaValuesCached.h ('k') | third_party/WebKit/Source/core/css/MediaValuesDynamic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698