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

Unified Diff: third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.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/CSSOffsetRotationInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp
index 5102cc47a43405a77bdd862ca7c4140e6310ef73..62dc968ecaf9911e4510acb5bb41ae63b184d7b5 100644
--- a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp
@@ -41,7 +41,7 @@ class UnderlyingRotationTypeChecker
public:
static std::unique_ptr<UnderlyingRotationTypeChecker> create(
OffsetRotationType underlyingRotationType) {
- return wrapUnique(
+ return WTF::wrapUnique(
new UnderlyingRotationTypeChecker(underlyingRotationType));
}
@@ -65,7 +65,8 @@ class InheritedRotationTypeChecker
public:
static std::unique_ptr<InheritedRotationTypeChecker> create(
OffsetRotationType inheritedRotationType) {
- return wrapUnique(new InheritedRotationTypeChecker(inheritedRotationType));
+ return WTF::wrapUnique(
+ new InheritedRotationTypeChecker(inheritedRotationType));
}
bool isValid(const InterpolationEnvironment& environment,

Powered by Google App Engine
This is Rietveld 408576698