Changeset 99412 in webkit
- Timestamp:
- Nov 7, 2011, 5:46:37 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r99411 r99412 1 2011-11-07 Andreas Kling <kling@webkit.org> 2 3 CSSPrimitiveValue: Remove unused virtual function parseString(). 4 <http://webkit.org/b/71671> 5 6 Reviewed by Antti Koivisto. 7 8 * css/CSSPrimitiveValue.cpp: 9 * css/CSSPrimitiveValue.h: 10 1 11 2011-11-07 Andrey Kosyakov <caseq@chromium.org> 2 12 -
trunk/Source/WebCore/css/CSSPrimitiveValue.cpp
r99409 r99412 671 671 } 672 672 673 bool CSSPrimitiveValue::parseString(const String& /*string*/, bool /*strict*/)674 {675 // FIXME676 return false;677 }678 679 673 int CSSPrimitiveValue::getIdent() const 680 674 { -
trunk/Source/WebCore/css/CSSPrimitiveValue.h
r99409 r99412 208 208 template<typename T> inline operator T() const; // Defined in CSSPrimitiveValueMappings.h 209 209 210 virtual bool parseString(const String&, bool = false);211 210 virtual String cssText() const; 212 211
Note:
See TracChangeset
for help on using the changeset viewer.