Changeset 238398 in webkit


Ignore:
Timestamp:
Nov 20, 2018 7:35:12 AM (5 years ago)
Author:
don.olmstead@sony.com
Message:

WebPasteboard should USE(LIBWPE)
https://bugs.webkit.org/show_bug.cgi?id=191846

Reviewed by Michael Catanzaro.

Add USE(LIBWPE) for Pasteboard related functionality within WebKit.

  • UIProcess/WebPasteboardProxy.h:
  • UIProcess/WebPasteboardProxy.messages.in:
  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
  • WebProcess/WebCoreSupport/WebPlatformStrategies.h:
Location:
trunk/Source/WebKit
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r238397 r238398  
     12018-11-20  Don Olmstead  <don.olmstead@sony.com>
     2
     3        WebPasteboard should USE(LIBWPE)
     4        https://bugs.webkit.org/show_bug.cgi?id=191846
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Add USE(LIBWPE) for Pasteboard related functionality within WebKit.
     9
     10        * UIProcess/WebPasteboardProxy.h:
     11        * UIProcess/WebPasteboardProxy.messages.in:
     12        * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
     13        * WebProcess/WebCoreSupport/WebPlatformStrategies.h:
     14
    1152018-11-20  Don Olmstead  <don.olmstead@sony.com>
    216
  • trunk/Source/WebKit/UIProcess/WebPasteboardProxy.h

    r237266 r238398  
    114114#endif // PLATFORM(GTK)
    115115
    116 #if PLATFORM(WPE)
     116#if USE(LIBWPE)
    117117    void getPasteboardTypes(Vector<String>& pasteboardTypes);
    118118    void readStringFromPasteboard(uint64_t index, const String& pasteboardType, WTF::String&);
  • trunk/Source/WebKit/UIProcess/WebPasteboardProxy.messages.in

    r237300 r238398  
    6666#endif
    6767
    68 #if PLATFORM(WPE)
     68#if USE(LIBWPE)
    6969    GetPasteboardTypes() -> (Vector<String> types) LegacySync
    7070    ReadStringFromPasteboard(uint64_t index, String pasteboardType) -> (String string) LegacySync
  • trunk/Source/WebKit/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp

    r237266 r238398  
    400400#endif // PLATFORM(GTK)
    401401
    402 #if PLATFORM(WPE)
     402#if USE(LIBWPE)
    403403// PasteboardStrategy
    404404
     
    425425}
    426426
    427 #endif // PLATFORM(WPE)
     427#endif // USE(LIBWPE)
    428428
    429429Vector<String> WebPlatformStrategies::typesSafeForDOMToReadAndWrite(const String& pasteboardName, const String& origin)
  • trunk/Source/WebKit/WebProcess/WebCoreSupport/WebPlatformStrategies.h

    r237266 r238398  
    9494    Ref<WebCore::SelectionData> readFromClipboard(const String& pasteboardName) override;
    9595#endif
    96 #if PLATFORM(WPE)
     96#if USE(LIBWPE)
    9797    void getTypes(Vector<String>& types) override;
    9898    String readStringFromPasteboard(int index, const String& pasteboardType) override;
Note: See TracChangeset for help on using the changeset viewer.