Changeset 161721 in webkit


Ignore:
Timestamp:
Jan 10, 2014, 8:05:19 PM (12 years ago)
Author:
Joseph Pecoraro
Message:

Fix InputType.o for iOS. Unreviewed build fix.

The RuntimeEnabledFeatures function pointer type should have a
const qualifier, because the implementations are all const.

  • html/InputType.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r161720 r161721  
     12014-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
    1102014-01-10  Joseph Pecoraro  <pecoraro@apple.com>
    211
  • trunk/Source/WebCore/html/InputType.cpp

    r161167 r161721  
    8484using namespace HTMLNames;
    8585
    86 typedef bool (RuntimeEnabledFeatures::*InputTypeConditionalFunction)();
     86typedef bool (RuntimeEnabledFeatures::*InputTypeConditionalFunction)() const;
    8787typedef const AtomicString& (*InputTypeNameFunction)();
    8888typedef std::unique_ptr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement&);
Note: See TracChangeset for help on using the changeset viewer.