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

Side by Side Diff: Source/core/animation/StringKeyframe.h

Issue 225303011: Oilpan: fix build after r170943 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 8 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
« no previous file with comments | « no previous file | Source/core/animation/StringKeyframe.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef StringKeyframe_h 5 #ifndef StringKeyframe_h
6 #define StringKeyframe_h 6 #define StringKeyframe_h
7 7
8 #include "core/animation/Keyframe.h" 8 #include "core/animation/Keyframe.h"
9 #include "core/css/StylePropertySet.h" 9 #include "core/css/StylePropertySet.h"
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 { } 56 { }
57 57
58 StringKeyframe(const StringKeyframe& copyFrom); 58 StringKeyframe(const StringKeyframe& copyFrom);
59 59
60 void setPropertyCSSValue(CSSPropertyID, CSSValue*); 60 void setPropertyCSSValue(CSSPropertyID, CSSValue*);
61 virtual PassRefPtrWillBeRawPtr<Keyframe> clone() const OVERRIDE; 61 virtual PassRefPtrWillBeRawPtr<Keyframe> clone() const OVERRIDE;
62 virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> createPro pertySpecificKeyframe(CSSPropertyID) const OVERRIDE; 62 virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> createPro pertySpecificKeyframe(CSSPropertyID) const OVERRIDE;
63 63
64 virtual bool isStringKeyframe() const OVERRIDE { return true; } 64 virtual bool isStringKeyframe() const OVERRIDE { return true; }
65 65
66 RefPtrWillBeRawPtr<MutableStylePropertySet> m_propertySet; 66 RefPtrWillBeMember<MutableStylePropertySet> m_propertySet;
67 }; 67 };
68 68
69 typedef StringKeyframe::PropertySpecificKeyframe StringPropertySpecificKeyframe; 69 typedef StringKeyframe::PropertySpecificKeyframe StringPropertySpecificKeyframe;
70 70
71 DEFINE_TYPE_CASTS(StringKeyframe, Keyframe, value, value->isStringKeyframe(), va lue.isStringKeyframe()); 71 DEFINE_TYPE_CASTS(StringKeyframe, Keyframe, value, value->isStringKeyframe(), va lue.isStringKeyframe());
72 DEFINE_TYPE_CASTS(StringPropertySpecificKeyframe, Keyframe::PropertySpecificKeyf rame, value, value->isStringPropertySpecificKeyframe(), value.isStringPropertySp ecificKeyframe()); 72 DEFINE_TYPE_CASTS(StringPropertySpecificKeyframe, Keyframe::PropertySpecificKeyf rame, value, value->isStringPropertySpecificKeyframe(), value.isStringPropertySp ecificKeyframe());
73 73
74 } 74 }
75 75
76 #endif 76 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/StringKeyframe.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698