Title: [225885] trunk/Source/WebCore
Revision
225885
Author
[email protected]
Date
2017-12-13 17:02:14 -0800 (Wed, 13 Dec 2017)

Log Message

Fix the Windows build after <https://trac.webkit.org/changeset/225879>
(https://bugs.webkit.org/show_bug.cgi?id=180651)

* html/TextFieldInputType.cpp:
(WebCore::autoFillButtonTypeToAccessibilityLabel):
(WebCore::autoFillButtonTypeToAutoFillButtonText):
(WebCore::autoFillButtonTypeToAutoFillButtonPseudoClassName):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (225884 => 225885)


--- trunk/Source/WebCore/ChangeLog	2017-12-14 00:57:35 UTC (rev 225884)
+++ trunk/Source/WebCore/ChangeLog	2017-12-14 01:02:14 UTC (rev 225885)
@@ -1,3 +1,13 @@
+2017-12-13  Daniel Bates  <[email protected]>
+
+        Fix the Windows build after <https://trac.webkit.org/changeset/225879>
+        (https://bugs.webkit.org/show_bug.cgi?id=180651)
+
+        * html/TextFieldInputType.cpp:
+        (WebCore::autoFillButtonTypeToAccessibilityLabel):
+        (WebCore::autoFillButtonTypeToAutoFillButtonText):
+        (WebCore::autoFillButtonTypeToAutoFillButtonPseudoClassName):
+
 2017-12-13  Devin Rousso  <[email protected]>
 
         Web Inspector: add instrumentation for ImageBitmapRenderingContext

Modified: trunk/Source/WebCore/html/TextFieldInputType.cpp (225884 => 225885)


--- trunk/Source/WebCore/html/TextFieldInputType.cpp	2017-12-14 00:57:35 UTC (rev 225884)
+++ trunk/Source/WebCore/html/TextFieldInputType.cpp	2017-12-14 01:02:14 UTC (rev 225885)
@@ -414,6 +414,8 @@
         ASSERT_NOT_REACHED();
         return { };
     }
+    ASSERT_NOT_REACHED();
+    return { };
 }
 
 static String autoFillButtonTypeToAutoFillButtonText(AutoFillButtonType autoFillButtonType)
@@ -429,6 +431,8 @@
         ASSERT_NOT_REACHED();
         return { };
     }
+    ASSERT_NOT_REACHED();
+    return { };
 }
 
 static AtomicString autoFillButtonTypeToAutoFillButtonPseudoClassName(AutoFillButtonType autoFillButtonType)
@@ -446,6 +450,8 @@
         ASSERT_NOT_REACHED();
         return emptyAtom();
     }
+    ASSERT_NOT_REACHED();
+    return { };
 }
 
 static bool isAutoFillButtonTypeChanged(const AtomicString& attribute, AutoFillButtonType autoFillButtonType)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to