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

Unified Diff: third_party/WebKit/Source/core/css/resolver/FontBuilder.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/resolver/FontBuilder.h
diff --git a/third_party/WebKit/Source/core/css/resolver/FontBuilder.h b/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
index e49b7fc6ca78ae0620b1a6ba13049c5496f13ebe..21ee8bfb2092a4b93f17d5d8db401e1ea438e9f6 100644
--- a/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
+++ b/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
@@ -69,9 +69,9 @@ public:
void setFontSmoothing(FontSmoothingMode);
// FIXME: These need to just vend a Font object eventually.
- void createFont(RawPtr<FontSelector>, ComputedStyle&);
+ void createFont(FontSelector*, ComputedStyle&);
- void createFontForDocument(RawPtr<FontSelector>, ComputedStyle&);
+ void createFontForDocument(FontSelector*, ComputedStyle&);
bool fontDirty() const { return m_flags; }

Powered by Google App Engine
This is Rietveld 408576698