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

Side by Side Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableLengthSize.h

Issue 2761693002: Wrapped PassRefPtrs in move where passed to RefPtr constructor. (Closed)
Patch Set: Added move wraps for multiple instances in 1 line. Created 3 years, 9 months 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; 50 bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
51 51
52 protected: 52 protected:
53 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, 53 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*,
54 double fraction) const override; 54 double fraction) const override;
55 55
56 private: 56 private:
57 AnimatableLengthSize(PassRefPtr<AnimatableValue> width, 57 AnimatableLengthSize(PassRefPtr<AnimatableValue> width,
58 PassRefPtr<AnimatableValue> height) 58 PassRefPtr<AnimatableValue> height)
59 : m_width(width), m_height(height) {} 59 : m_width(std::move(width)), m_height(std::move(height)) {}
60 AnimatableType type() const override { return TypeLengthSize; } 60 AnimatableType type() const override { return TypeLengthSize; }
61 bool equalTo(const AnimatableValue*) const override; 61 bool equalTo(const AnimatableValue*) const override;
62 62
63 RefPtr<AnimatableValue> m_width; 63 RefPtr<AnimatableValue> m_width;
64 RefPtr<AnimatableValue> m_height; 64 RefPtr<AnimatableValue> m_height;
65 }; 65 };
66 66
67 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableLengthSize, isLengthSize()); 67 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableLengthSize, isLengthSize());
68 68
69 } // namespace blink 69 } // namespace blink
70 70
71 #endif // AnimatableLengthSize_h 71 #endif // AnimatableLengthSize_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698