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

Unified Diff: third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.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/CSSScaleInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp
index 28b44ccb3e948f513486dda02f25056dac2a3a98..00d838f31c32a32ece13724355637f82f6d0a52e 100644
--- a/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp
@@ -56,7 +56,7 @@ struct Scale {
class InheritedScaleChecker : public InterpolationType::ConversionChecker {
public:
static std::unique_ptr<InheritedScaleChecker> create(const Scale& scale) {
- return wrapUnique(new InheritedScaleChecker(scale));
+ return WTF::wrapUnique(new InheritedScaleChecker(scale));
}
private:

Powered by Google App Engine
This is Rietveld 408576698