Changeset 242312 in webkit


Ignore:
Timestamp:
Mar 2, 2019 9:50:12 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

[WPE] Public API headers are missing autocleanup definitions
https://bugs.webkit.org/show_bug.cgi?id=195211

Reviewed by Philippe Normand.

  • PlatformWPE.cmake: List new API headers as installable.
  • UIProcess/API/wpe/WebKitAutocleanups.h: Added. This is a copy of the header from the GTK

port, adapted to fit the WPE port.

  • UIProcess/API/wpe/webkit.h: Add inclusion of WebKitAutocleanups.h
  • WebProcess/InjectedBundle/API/wpe/WebKitWebExtensionAutocleanups.h: Added. Also adapted

from the equivalent header of the GTK port.

  • WebProcess/InjectedBundle/API/wpe/webkit-web-extension.h: Add inclusion of

WebKitWebExtensionAutocleanups.h

Location:
trunk/Source/WebKit
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r242310 r242312  
     12019-03-02  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [WPE] Public API headers are missing autocleanup definitions
     4        https://bugs.webkit.org/show_bug.cgi?id=195211
     5
     6        Reviewed by Philippe Normand.
     7
     8        * PlatformWPE.cmake: List new API headers as installable.
     9        * UIProcess/API/wpe/WebKitAutocleanups.h: Added. This is a copy of the header from the GTK
     10        port, adapted to fit the WPE port.
     11        * UIProcess/API/wpe/webkit.h: Add inclusion of WebKitAutocleanups.h
     12        * WebProcess/InjectedBundle/API/wpe/WebKitWebExtensionAutocleanups.h: Added. Also adapted
     13        from the equivalent header of the GTK port.
     14        * WebProcess/InjectedBundle/API/wpe/webkit-web-extension.h: Add inclusion of
     15        WebKitWebExtensionAutocleanups.h
     16
    1172019-03-02  Michael Catanzaro  <mcatanzaro@igalia.com>
    218
  • trunk/Source/WebKit/PlatformWPE.cmake

    r242082 r242312  
    9393    ${WEBKIT_DIR}/UIProcess/API/wpe/WebKitApplicationInfo.h
    9494    ${WEBKIT_DIR}/UIProcess/API/wpe/WebKitAuthenticationRequest.h
     95    ${WEBKIT_DIR}/UIProcess/API/wpe/WebKitAutocleanups.h
    9596    ${WEBKIT_DIR}/UIProcess/API/wpe/WebKitAutomationSession.h
    9697    ${WEBKIT_DIR}/UIProcess/API/wpe/WebKitBackForwardList.h
     
    156157    ${WEBKIT_DIR}/WebProcess/InjectedBundle/API/wpe/WebKitWebEditor.h
    157158    ${WEBKIT_DIR}/WebProcess/InjectedBundle/API/wpe/WebKitWebExtension.h
     159    ${WEBKIT_DIR}/WebProcess/InjectedBundle/API/wpe/WebKitWebExtensionAutocleanups.h
    158160    ${WEBKIT_DIR}/WebProcess/InjectedBundle/API/wpe/WebKitWebHitTestResult.h
    159161    ${WEBKIT_DIR}/WebProcess/InjectedBundle/API/wpe/WebKitWebPage.h
  • trunk/Source/WebKit/UIProcess/API/wpe/webkit.h

    r241790 r242312  
    8383#include <wpe/WebKitWindowProperties.h>
    8484
     85#include <wpe/WebKitAutocleanups.h>
     86
    8587#undef __WEBKIT_H_INSIDE__
    8688
  • trunk/Source/WebKit/WebProcess/InjectedBundle/API/wpe/webkit-web-extension.h

    r229973 r242312  
    4141#include <wpe/WebKitWebProcessEnumTypes.h>
    4242
     43#include <wpe/WebKitWebExtensionAutocleanups.h>
     44
    4345#undef __WEBKIT_WEB_EXTENSION_H_INSIDE__
    4446
Note: See TracChangeset for help on using the changeset viewer.