Title: [157446] trunk/Source/WebKit2
Revision
157446
Author
[email protected]
Date
2013-10-15 04:25:08 -0700 (Tue, 15 Oct 2013)

Log Message

Unreviewed. Fix the GTK+ build after r157445.

* UIProcess/API/gtk/WebKitLoaderClient.cpp:
(didFailProvisionalLoadWithErrorForFrame):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (157445 => 157446)


--- trunk/Source/WebKit2/ChangeLog	2013-10-15 10:24:29 UTC (rev 157445)
+++ trunk/Source/WebKit2/ChangeLog	2013-10-15 11:25:08 UTC (rev 157446)
@@ -1,3 +1,10 @@
+2013-10-15  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix the GTK+ build after r157445.
+
+        * UIProcess/API/gtk/WebKitLoaderClient.cpp:
+        (didFailProvisionalLoadWithErrorForFrame):
+
 2013-10-15  Csaba Osztrogonác  <[email protected]>
 
         Move PlatformCertificateInfo to WebCore and make the ResourceResponse primitives work in terms of that platform agnostic object

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp (157445 => 157446)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp	2013-10-15 10:24:29 UTC (rev 157445)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp	2013-10-15 11:25:08 UTC (rev 157446)
@@ -56,9 +56,9 @@
     GOwnPtr<GError> webError(g_error_new_literal(g_quark_from_string(resourceError.domain().utf8().data()),
                                                  resourceError.errorCode(),
                                                  resourceError.localizedDescription().utf8().data()));
-    if (resourceError.tlsErrors()) {
+    if (resourceError.certificateInfo().tlsErrors()) {
         webkitWebViewLoadFailedWithTLSErrors(WEBKIT_WEB_VIEW(clientInfo), resourceError.failingURL().utf8().data(), webError.get(),
-            static_cast<GTlsCertificateFlags>(resourceError.tlsErrors()), resourceError.certificate());
+            static_cast<GTlsCertificateFlags>(resourceError.certificateInfo().tlsErrors()), resourceError.certificateInfo().certificate());
     } else
         webkitWebViewLoadFailed(WEBKIT_WEB_VIEW(clientInfo), WEBKIT_LOAD_STARTED, resourceError.failingURL().utf8().data(), webError.get());
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to