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

Unified Diff: third_party/WebKit/Source/core/css/resolver/FontBuilder.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 f8d03cb2ac094ed6b3e1c4099c220fbbdf63333d..b7678b98c8912ce7aac388c60de620d55562df8f 100644
--- a/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
+++ b/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
@@ -67,9 +67,9 @@ public:
void setFontSmoothing(FontSmoothingMode);
// FIXME: These need to just vend a Font object eventually.
- void createFont(PassRefPtrWillBeRawPtr<FontSelector>, ComputedStyle&);
+ void createFont(RawPtr<FontSelector>, ComputedStyle&);
- void createFontForDocument(PassRefPtrWillBeRawPtr<FontSelector>, ComputedStyle&);
+ void createFontForDocument(RawPtr<FontSelector>, ComputedStyle&);
bool fontDirty() const { return m_flags; }
@@ -101,7 +101,7 @@ private:
float getComputedSizeFromSpecifiedSize(FontDescription&, float effectiveZoom, float specifiedSize);
- RawPtrWillBeMember<const Document> m_document;
+ Member<const Document> m_document;
FontDescription m_fontDescription;
enum class PropertySetFlag {

Powered by Google App Engine
This is Rietveld 408576698