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

Unified Diff: third_party/WebKit/Source/core/animation/InterpolableValue.h

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/InterpolableValue.h
diff --git a/third_party/WebKit/Source/core/animation/InterpolableValue.h b/third_party/WebKit/Source/core/animation/InterpolableValue.h
index af3b7209e161707a2a845520c375183eb8ab86a4..85312d6cefd8c686a523d9a684e083184549ed5b 100644
--- a/third_party/WebKit/Source/core/animation/InterpolableValue.h
+++ b/third_party/WebKit/Source/core/animation/InterpolableValue.h
@@ -53,7 +53,7 @@ class CORE_EXPORT InterpolableValue {
class CORE_EXPORT InterpolableNumber final : public InterpolableValue {
public:
static std::unique_ptr<InterpolableNumber> create(double value) {
- return wrapUnique(new InterpolableNumber(value));
+ return WTF::wrapUnique(new InterpolableNumber(value));
}
bool isNumber() const final { return true; }
@@ -90,11 +90,11 @@ class CORE_EXPORT InterpolableList : public InterpolableValue {
static std::unique_ptr<InterpolableList> create(
const InterpolableList& other) {
- return wrapUnique(new InterpolableList(other));
+ return WTF::wrapUnique(new InterpolableList(other));
}
static std::unique_ptr<InterpolableList> create(size_t size) {
- return wrapUnique(new InterpolableList(size));
+ return WTF::wrapUnique(new InterpolableList(size));
}
bool isList() const final { return true; }
@@ -135,7 +135,7 @@ class InterpolableAnimatableValue : public InterpolableValue {
public:
static std::unique_ptr<InterpolableAnimatableValue> create(
PassRefPtr<AnimatableValue> value) {
- return wrapUnique(new InterpolableAnimatableValue(std::move(value)));
+ return WTF::wrapUnique(new InterpolableAnimatableValue(std::move(value)));
}
bool isAnimatableValue() const final { return true; }

Powered by Google App Engine
This is Rietveld 408576698