⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 175950 in webkit


Ignore:
Timestamp:
Nov 11, 2014, 9:42:03 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r175619 - NetscapePlugin: NPP_GetValue should receive a pointer to NPBool, not bool
https://bugs.webkit.org/show_bug.cgi?id=138418

Reviewed by Carlos Garcia Campos.

Replace bool with NPBool, which is actually an unsigned char.

  • WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp:

(WebKit::NetscapePlugin::platformPostInitialize):

Location:
releases/WebKitGTK/webkit-2.6/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.6/Source/WebKit2/ChangeLog

    r175920 r175950  
     12014-11-05  Alberto Garcia  <berto@igalia.com>
     2
     3        NetscapePlugin: NPP_GetValue should receive a pointer to NPBool, not bool
     4        https://bugs.webkit.org/show_bug.cgi?id=138418
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Replace bool with NPBool, which is actually an unsigned char.
     9
     10        * WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp:
     11        (WebKit::NetscapePlugin::platformPostInitialize):
     12
    1132014-10-28  Ting-Wei Lan  <lantw44@gmail.com>
    214
  • releases/WebKitGTK/webkit-2.6/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp

    r172919 r175950  
    203203{
    204204    uint64_t windowID = 0;
    205     bool needsXEmbed = false;
     205    NPBool needsXEmbed = false;
    206206    if (m_isWindowed) {
    207207        NPP_GetValue(NPPVpluginNeedsXEmbed, &needsXEmbed);
Note: See TracChangeset for help on using the changeset viewer.