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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_units.cc

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/layout/ng/ng_units.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_units.cc b/third_party/WebKit/Source/core/layout/ng/ng_units.cc
index 52713faf57a97ee9368eaf0f44ca976c12f4e015..f431434b207237f78a041a23472e9a776d166cb9 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_units.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_units.cc
@@ -243,7 +243,7 @@ NGExclusions::NGExclusions(const NGExclusions& other) {
}
void NGExclusions::Add(const NGExclusion& exclusion) {
- storage.append(makeUnique<NGExclusion>(exclusion));
+ storage.append(WTF::makeUnique<NGExclusion>(exclusion));
if (exclusion.type == NGExclusion::kFloatLeft) {
last_left_float = storage.rbegin()->get();
} else if (exclusion.type == NGExclusion::kFloatRight) {

Powered by Google App Engine
This is Rietveld 408576698