Changeset 161721 in webkit
- Timestamp:
- Jan 10, 2014, 8:05:19 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r161720 r161721 1 2014-01-10 Joseph Pecoraro <pecoraro@apple.com> 2 3 Fix InputType.o for iOS. Unreviewed build fix. 4 5 The RuntimeEnabledFeatures function pointer type should have a 6 const qualifier, because the implementations are all const. 7 8 * html/InputType.cpp: 9 1 10 2014-01-10 Joseph Pecoraro <pecoraro@apple.com> 2 11 -
trunk/Source/WebCore/html/InputType.cpp
r161167 r161721 84 84 using namespace HTMLNames; 85 85 86 typedef bool (RuntimeEnabledFeatures::*InputTypeConditionalFunction)() ;86 typedef bool (RuntimeEnabledFeatures::*InputTypeConditionalFunction)() const; 87 87 typedef const AtomicString& (*InputTypeNameFunction)(); 88 88 typedef std::unique_ptr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement&);
Note:
See TracChangeset
for help on using the changeset viewer.