Changeset 76466 in webkit


Ignore:
Timestamp:
Jan 23, 2011 11:28:41 AM (13 years ago)
Author:
yael.aharon@nokia.com
Message:

2011-01-23 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt][Symbian] Fix --minimal build
https://bugs.webkit.org/show_bug.cgi?id=52839

Some of the plugins' functionality is reimplemented in
Symbian specific files.
Some of this functionality should be compiled in even if
the guard NETSCAPE_PLUGIN_API is turned off.
This patch moves that functionality out of the
NETSCAPE_PLUGIN_API guard.

Build fix so no new tests.

  • WebCore.pro:
  • plugins/symbian/PluginPackageSymbian.cpp:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r76463 r76466  
     12011-01-23  Yael Aharon  <yael.aharon@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt][Symbian] Fix --minimal build
     6        https://bugs.webkit.org/show_bug.cgi?id=52839
     7
     8        Some of the plugins' functionality is reimplemented in
     9        Symbian specific files.
     10        Some of this functionality should be compiled in even if
     11        the guard NETSCAPE_PLUGIN_API is turned off.
     12        This patch moves that functionality out of the
     13        NETSCAPE_PLUGIN_API guard.
     14
     15        Build fix so no new tests.
     16
     17        * WebCore.pro:
     18        * plugins/symbian/PluginPackageSymbian.cpp:
     19
    1202011-01-23  Andreas Kling  <kling@webkit.org>
    221
  • trunk/Source/WebCore/WebCore.pro

    r76459 r76466  
    28432843}
    28442844
     2845symbian {
     2846    SOURCES += \
     2847        plugins/symbian/PluginDatabaseSymbian.cpp \
     2848        plugins/symbian/PluginPackageSymbian.cpp
     2849}
     2850
    28452851contains(DEFINES, ENABLE_NETSCAPE_PLUGIN_API=1) {
    28462852
     
    28492855    symbian {
    28502856        SOURCES += \
    2851         plugins/symbian/PluginPackageSymbian.cpp \
    2852         plugins/symbian/PluginDatabaseSymbian.cpp \
    28532857        plugins/symbian/PluginViewSymbian.cpp \
    28542858        plugins/symbian/PluginContainerSymbian.cpp
  • trunk/Source/WebCore/plugins/symbian/PluginPackageSymbian.cpp

    r75439 r76466  
    3030namespace WebCore {
    3131
     32#if ENABLE(NETSCAPE_PLUGIN_API)
    3233bool PluginPackage::fetchInfo()
    3334{
     
    170171    return true;
    171172}
     173#endif
    172174
    173175void PluginPackage::unload()
     
    187189}
    188190
     191#if ENABLE(NETSCAPE_PLUGIN_API)
    189192uint16_t PluginPackage::NPVersion() const
    190193{
    191194    return NP_VERSION_MINOR;
    192195}
     196#endif
    193197}
    194198
Note: See TracChangeset for help on using the changeset viewer.