Changeset 149669 in webkit


Ignore:
Timestamp:
May 7, 2013 8:07:46 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[X11][BlackBerry] Check if MOZ_X11 is defined instead of XP_UNIX npruntime_internal.h
https://bugs.webkit.org/show_bug.cgi?id=113687

Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2013-05-07
Reviewed by Anders Carlsson.

It's assumed that all UNIX platforms use X11 for plugins, which is
not the case of BlackBerry.

  • bridge/npruntime_internal.h: Use MOZ_X11 instead of XP_UNIX.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r149665 r149669  
     12013-05-07  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [X11][BlackBerry] Check if MOZ_X11 is defined instead of XP_UNIX npruntime_internal.h
     4        https://bugs.webkit.org/show_bug.cgi?id=113687
     5
     6        Reviewed by Anders Carlsson.
     7
     8        It's assumed that all UNIX platforms use X11 for plugins, which is
     9        not the case of BlackBerry.
     10
     11        * bridge/npruntime_internal.h: Use MOZ_X11 instead of XP_UNIX.
     12
    1132013-05-07  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
    214
  • trunk/Source/WebCore/bridge/npruntime_internal.h

    r99872 r149669  
    3030#include "npruntime.h"
    3131
    32 #ifdef XP_UNIX
     32#if defined(MOZ_X11)
    3333    #include <X11/Xresource.h>
    3434
Note: See TracChangeset for help on using the changeset viewer.