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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserImpl.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/parser/CSSParserImpl.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
index 8140d02235f04667b22f7652a4f904c7be29cfac..3545f861b4b307d3069669d3bcdfbedbe6bd6006 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
@@ -948,7 +948,7 @@ void CSSParserImpl::consumeDeclarationValue(CSSParserTokenRange range,
std::unique_ptr<Vector<double>> CSSParserImpl::consumeKeyframeKeyList(
CSSParserTokenRange range) {
- std::unique_ptr<Vector<double>> result = wrapUnique(new Vector<double>);
+ std::unique_ptr<Vector<double>> result = WTF::wrapUnique(new Vector<double>);
while (true) {
range.consumeWhitespace();
const CSSParserToken& token = range.consumeIncludingWhitespace();

Powered by Google App Engine
This is Rietveld 408576698