Changeset 175950 in webkit
- Timestamp:
- Nov 11, 2014, 9:42:03 AM (12 years ago)
- Location:
- releases/WebKitGTK/webkit-2.6/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.6/Source/WebKit2/ChangeLog
r175920 r175950 1 2014-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 1 13 2014-10-28 Ting-Wei Lan <lantw44@gmail.com> 2 14 -
releases/WebKitGTK/webkit-2.6/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
r172919 r175950 203 203 { 204 204 uint64_t windowID = 0; 205 bool needsXEmbed = false;205 NPBool needsXEmbed = false; 206 206 if (m_isWindowed) { 207 207 NPP_GetValue(NPPVpluginNeedsXEmbed, &needsXEmbed);
Note:
See TracChangeset
for help on using the changeset viewer.