Changeset 207296 in webkit


Ignore:
Timestamp:
Oct 13, 2016 11:53:45 AM (8 years ago)
Author:
Jonathan Bedard
Message:

GTK and EFL on Mac fail to compile WebTextChecker due to missing definition of WKTextCheckerClientBase
https://bugs.webkit.org/show_bug.cgi?id=163346

Reviewed by Daniel Bates.

  • UIProcess/API/C/WKTextChecker.cpp: Fixed #ifdefs for GTK and EFL builds on Darwin machines.
  • UIProcess/API/C/WKTextChecker.h: Ditto.
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r207292 r207296  
     12016-10-13  Jonathan Bedard  <jbedard@apple.com>
     2
     3        GTK and EFL on Mac fail to compile WebTextChecker due to missing definition of WKTextCheckerClientBase
     4        https://bugs.webkit.org/show_bug.cgi?id=163346
     5
     6        Reviewed by Daniel Bates.
     7
     8        * UIProcess/API/C/WKTextChecker.cpp: Fixed #ifdefs for GTK and EFL builds on Darwin machines.
     9        * UIProcess/API/C/WKTextChecker.h: Ditto.
     10
    1112016-10-13  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/API/C/WKTextChecker.cpp

    r206261 r207296  
    2828#include "TextChecker.h"
    2929
    30 #if !defined(__APPLE__)
     30#if defined(BUILDING_EFL__) || defined(BUILDING_GTK__)
    3131#include "WKAPICast.h"
    3232#include "WebPageProxy.h"
     
    4141}
    4242
    43 #if !defined(__APPLE__)
     43#if defined(BUILDING_EFL__) || defined(BUILDING_GTK__)
    4444
    4545void WKTextCheckerSetClient(const WKTextCheckerClientBase* wkClient)
  • trunk/Source/WebKit2/UIProcess/API/C/WKTextChecker.h

    r206261 r207296  
    3535WK_EXPORT void WKTextCheckerSetTestingMode(bool enabled);
    3636
    37 #if !defined(__APPLE__)
     37#if defined(BUILDING_EFL__) || defined(BUILDING_GTK__)
    3838
    3939// TextChecker Client
Note: See TracChangeset for help on using the changeset viewer.