Title: [234982] trunk/Source/WebCore
Revision
234982
Author
[email protected]
Date
2018-08-17 06:19:19 -0700 (Fri, 17 Aug 2018)

Log Message

[SOUP] Handle OAuth authentication after r234912
https://bugs.webkit.org/show_bug.cgi?id=188651

Reviewed by Carlos Garcia Campos.

Update this switch to consider the new OAuth enum value added in r234912. I suppose OAuth is
used for HTTP Auth now. It will be a one-time compatibility break as passwords previously
stored with type "Unknown" will no longer be accessible.

* platform/network/soup/NetworkStorageSessionSoup.cpp:
(WebCore::authTypeFromProtectionSpaceAuthenticationScheme):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (234981 => 234982)


--- trunk/Source/WebCore/ChangeLog	2018-08-17 13:15:42 UTC (rev 234981)
+++ trunk/Source/WebCore/ChangeLog	2018-08-17 13:19:19 UTC (rev 234982)
@@ -1,3 +1,17 @@
+2018-08-17  Michael Catanzaro  <[email protected]>
+
+        [SOUP] Handle OAuth authentication after r234912
+        https://bugs.webkit.org/show_bug.cgi?id=188651
+
+        Reviewed by Carlos Garcia Campos.
+
+        Update this switch to consider the new OAuth enum value added in r234912. I suppose OAuth is
+        used for HTTP Auth now. It will be a one-time compatibility break as passwords previously
+        stored with type "Unknown" will no longer be accessible.
+
+        * platform/network/soup/NetworkStorageSessionSoup.cpp:
+        (WebCore::authTypeFromProtectionSpaceAuthenticationScheme):
+
 2018-08-17  Ms2ger  <[email protected]>
 
         [GTK] Never return an uninitialized ImageGStreamer object.

Modified: trunk/Source/WebCore/platform/network/soup/NetworkStorageSessionSoup.cpp (234981 => 234982)


--- trunk/Source/WebCore/platform/network/soup/NetworkStorageSessionSoup.cpp	2018-08-17 13:15:42 UTC (rev 234981)
+++ trunk/Source/WebCore/platform/network/soup/NetworkStorageSessionSoup.cpp	2018-08-17 13:19:19 UTC (rev 234982)
@@ -177,6 +177,8 @@
     case ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested:
         ASSERT_NOT_REACHED();
         break;
+    case ProtectionSpaceAuthenticationSchemeOAuth:
+        return "OAuth";
     case ProtectionSpaceAuthenticationSchemeUnknown:
         return "unknown";
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to