Changeset 90368 in webkit


Ignore:
Timestamp:
Jul 4, 2011 11:03:56 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-07-04 Martin Robinson <mrobinson@igalia.com>

Reviewed by Andreas Kling.

[GTK] r90148 did not apply to X11 platforms in WebKit1
https://bugs.webkit.org/show_bug.cgi?id=63862

Correct the guard for an X11 specific piece of code. TARGET(X11) not
defined for the GTK+ port.

No new tests. This is covered by an existing test.

  • plugins/npapi.cpp: Correct the X11 guard. (NPN_InvalidateRect):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r90365 r90368  
     12011-07-04  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [GTK] r90148 did not apply to X11 platforms in WebKit1
     6        https://bugs.webkit.org/show_bug.cgi?id=63862
     7
     8        Correct the guard for an X11 specific piece of code. TARGET(X11) not
     9        defined for the GTK+ port.
     10
     11        No new tests. This is covered by an existing test.
     12
     13        * plugins/npapi.cpp: Correct the X11 guard.
     14        (NPN_InvalidateRect):
     15
    1162011-07-04  Pavel Feldman  <pfeldman@google.com>
    217
  • trunk/Source/WebCore/plugins/npapi.cpp

    r90148 r90368  
    123123{
    124124    PluginView* view = pluginViewForInstance(instance);
    125 #if defined(TARGET_X11)
     125#if defined(XP_UNIX)
    126126    // NSPluginWrapper, a plugin wrapper binary that allows running 32-bit plugins
    127127    // on 64-bit architectures typically used in X11, will sometimes give us a null NPP here.
Note: See TracChangeset for help on using the changeset viewer.