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

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

Issue 2752593003: Migrate WTF::Deque::first() to ::front() (Closed)
Patch Set: one more platform specific reference Created 3 years, 9 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 8d217faa73d6c46b1b4d6412aaa6cb7890038af5..bac50c541e15f1e2d821a8d128d297048ad364c5 100644
--- a/third_party/WebKit/Source/core/css/CSSFontFace.h
+++ b/third_party/WebKit/Source/core/css/CSSFontFace.h
@@ -81,7 +81,7 @@ class CORE_EXPORT CSSFontFace final
void load();
void load(const FontDescription&);
- bool hadBlankText() { return isValid() && m_sources.first()->hadBlankText(); }
+ bool hadBlankText() { return isValid() && m_sources.front()->hadBlankText(); }
DECLARE_TRACE();

Powered by Google App Engine
This is Rietveld 408576698