Changeset 116651 in webkit


Ignore:
Timestamp:
May 10, 2012 9:33:28 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Missing field initializers for WKPageLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=86005

Patch by Simon Pena <Simon Pena> on 2012-05-10
Reviewed by Martin Robinson.

Initialize willGoToBackForwardListItem and
interactionOccurredWhileProcessUnresponsive fields of
WKPageLoaderClient.

  • UIProcess/API/gtk/WebKitLoaderClient.cpp:

(attachLoaderClientToView):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r116648 r116651  
     12012-05-10  Simon Pena  <spena@igalia.com>
     2
     3        [GTK] Missing field initializers for WKPageLoaderClient
     4        https://bugs.webkit.org/show_bug.cgi?id=86005
     5
     6        Reviewed by Martin Robinson.
     7
     8        Initialize willGoToBackForwardListItem and
     9        interactionOccurredWhileProcessUnresponsive fields of
     10        WKPageLoaderClient.
     11
     12        * UIProcess/API/gtk/WebKitLoaderClient.cpp:
     13        (attachLoaderClientToView):
     14
    1152012-05-10  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    216
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitLoaderClient.cpp

    r108095 r116651  
    146146        0, // didFailToInitializePlugin
    147147        0, // didDetectXSSForFrame
    148         0 // didFirstVisuallyNonEmptyLayoutForFrame
     148        0, // didFirstVisuallyNonEmptyLayoutForFrame
     149        0, // willGoToBackForwardListItem
     150        0 // interactionOccurredWhileProcessUnresponsive
    149151    };
    150152    WKPageRef wkPage = toAPI(webkitWebViewBaseGetPage(WEBKIT_WEB_VIEW_BASE(webView)));
Note: See TracChangeset for help on using the changeset viewer.