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

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

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/css/resolver/StyleBuilderCustom.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
index c9739d5e7db4b6437c277482fed2e340bbc52b6e..27531b2241bd92d50d083dbd6658f7dc303663ef 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -798,9 +798,10 @@ void StyleBuilderFunctions::applyValueCSSPropertyContent(
if (listStyleIdent != CSSValueNone)
listStyleType =
static_cast<EListStyleType>(listStyleIdent - CSSValueDisc);
- std::unique_ptr<CounterContent> counter = wrapUnique(new CounterContent(
- AtomicString(counterValue->identifier()), listStyleType,
- AtomicString(counterValue->separator())));
+ std::unique_ptr<CounterContent> counter =
+ WTF::wrapUnique(new CounterContent(
+ AtomicString(counterValue->identifier()), listStyleType,
+ AtomicString(counterValue->separator())));
nextContent = ContentData::create(std::move(counter));
} else if (item->isIdentifierValue()) {
QuoteType quoteType;

Powered by Google App Engine
This is Rietveld 408576698