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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp

Issue 2470233009: WTF/std normalization: replace WTF::Vector::first() with ::front() (Closed)
Patch Set: rebase Created 4 years, 1 month 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/StyleResolver.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
index 105b1d308a5c618f17728c8f7af65d65f2351c3e..3e9c5d1e26b6a768db73e1eb8eb4afdb3bdfb0b3 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
@@ -1195,7 +1195,7 @@ void StyleResolver::applyAnimatedProperties(
: entry.key.presentationAttribute();
if (!CSSPropertyPriorityData<priority>::propertyHasPriority(property))
continue;
- const Interpolation& interpolation = *entry.value.first();
+ const Interpolation& interpolation = *entry.value.front();
if (interpolation.isInvalidatableInterpolation()) {
InterpolationEnvironment environment(state);
InvalidatableInterpolation::applyStack(entry.value, environment);
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQueryExp.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentOrderedMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698