Changeset 155100 in webkit for trunk/Source/WebCore/css/CSSCrossfadeValue.h
- Timestamp:
- Sep 4, 2013, 11:50:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSCrossfadeValue.h
r155060 r155100 66 66 bool hasFailedOrCanceledSubresources() const; 67 67 68 PassRefPtr<CSSCrossfadeValue> blend(const CSSCrossfadeValue&, double) const; 69 68 70 bool equals(const CSSCrossfadeValue&) const; 71 72 bool equalInputImages(const CSSCrossfadeValue&) const; 69 73 70 74 private: … … 107 111 }; 108 112 113 inline CSSCrossfadeValue* toCSSCrossfadeValue(CSSImageGeneratorValue* value) 114 { 115 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->isCrossfadeValue()); 116 return static_cast<CSSCrossfadeValue*>(value); 117 } 118 109 119 } // namespace WebCore 110 120
Note:
See TracChangeset
for help on using the changeset viewer.