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

Unified Diff: third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.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/animation/CSSLengthInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
index 0bb77d3ddf54e1c93f211d0874b7c3138263a3c8..8128617223db2275ca3f504f4cf41b27ba9ac468 100644
--- a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
@@ -32,7 +32,7 @@ class InheritedLengthChecker : public InterpolationType::ConversionChecker {
public:
static std::unique_ptr<InheritedLengthChecker> create(CSSPropertyID property,
const Length& length) {
- return wrapUnique(new InheritedLengthChecker(property, length));
+ return WTF::wrapUnique(new InheritedLengthChecker(property, length));
}
private:

Powered by Google App Engine
This is Rietveld 408576698