Title: [161721] trunk/Source/WebCore
Revision
161721
Author
[email protected]
Date
2014-01-10 20:05:19 -0800 (Fri, 10 Jan 2014)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161720 => 161721)


--- trunk/Source/WebCore/ChangeLog	2014-01-11 03:58:22 UTC (rev 161720)
+++ trunk/Source/WebCore/ChangeLog	2014-01-11 04:05:19 UTC (rev 161721)
@@ -1,5 +1,14 @@
 2014-01-10  Joseph Pecoraro  <[email protected]>
 
+        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:
+
+2014-01-10  Joseph Pecoraro  <[email protected]>
+
         Fix MediaPlayerPrivateIOS.o for iOS. Unreviewed build fix.
 
         Add missing MediaPlayerProxy Objective C methods and forward declarations.

Modified: trunk/Source/WebCore/html/InputType.cpp (161720 => 161721)


--- trunk/Source/WebCore/html/InputType.cpp	2014-01-11 03:58:22 UTC (rev 161720)
+++ trunk/Source/WebCore/html/InputType.cpp	2014-01-11 04:05:19 UTC (rev 161721)
@@ -83,7 +83,7 @@
 
 using namespace HTMLNames;
 
-typedef bool (RuntimeEnabledFeatures::*InputTypeConditionalFunction)();
+typedef bool (RuntimeEnabledFeatures::*InputTypeConditionalFunction)() const;
 typedef const AtomicString& (*InputTypeNameFunction)();
 typedef std::unique_ptr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement&);
 typedef HashMap<AtomicString, InputTypeFactoryFunction, CaseFoldingHash> InputTypeFactoryMap;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to