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

Unified Diff: third_party/WebKit/Source/core/css/CSSFontFace.h

Issue 1729013002: blink: Rename enums and functions to not collide with chromium style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-3: . 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/CSSFontFace.h
diff --git a/third_party/WebKit/Source/core/css/CSSFontFace.h b/third_party/WebKit/Source/core/css/CSSFontFace.h
index 90b3b80f4c1b50d9e1c91d2be617c55f33513cff..662b2e03b724988294417608eca7932dd98dca09 100644
--- a/third_party/WebKit/Source/core/css/CSSFontFace.h
+++ b/third_party/WebKit/Source/core/css/CSSFontFace.h
@@ -108,7 +108,7 @@ public:
Vector<UnicodeRange> m_ranges; // If empty, represents the whole code space.
};
- FontFace::LoadStatus loadStatus() const { return m_fontFace->loadStatus(); }
+ FontFace::LoadStatusType loadStatus() const { return m_fontFace->loadStatus(); }
bool maybeScheduleFontLoad(const FontDescription&, UChar32);
bool maybeScheduleFontLoad(const FontDescription&, const FontDataRange&);
void load();
@@ -119,7 +119,7 @@ public:
DECLARE_TRACE();
private:
- void setLoadStatus(FontFace::LoadStatus);
+ void setLoadStatus(FontFace::LoadStatusType);
UnicodeRangeSet m_ranges;
RawPtrWillBeMember<CSSSegmentedFontFace> m_segmentedFontFace;

Powered by Google App Engine
This is Rietveld 408576698