Changeset 228502 in webkit


Ignore:
Timestamp:
Feb 14, 2018 6:55:57 PM (6 years ago)
Author:
Ross Kirsling
Message:

Default definition of InjectedBundle::PlatformBundle should not be Windows-specific.
https://bugs.webkit.org/show_bug.cgi?id=182810

Reviewed by Michael Catanzaro.

This branch was added in r228455, but should not be limited to OS(WINDOWS).

  • WebProcess/InjectedBundle/InjectedBundle.h:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r228496 r228502  
     12018-02-14  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        Default definition of InjectedBundle::PlatformBundle should not be Windows-specific.
     4        https://bugs.webkit.org/show_bug.cgi?id=182810
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        This branch was added in r228455, but should not be limited to OS(WINDOWS).
     9
     10        * WebProcess/InjectedBundle/InjectedBundle.h:
     11
    1122018-02-14  Ross Kirsling  <ross.kirsling@sony.com>
    213
  • trunk/Source/WebKit/WebProcess/InjectedBundle/InjectedBundle.h

    r228455 r228502  
    6363#elif USE(GLIB)
    6464typedef ::GModule* PlatformBundle;
    65 #elif OS(WINDOWS)
     65#else
    6666typedef void* PlatformBundle;
    6767#endif
Note: See TracChangeset for help on using the changeset viewer.