Changeset 57873 in webkit


Ignore:
Timestamp:
Apr 19, 2010 11:30:01 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-19 Leandro Pereira <leandro@profusion.mobi>

Reviewed by David Hyatt.

Add missing dummy implementations in PluginPackageNone and PluginViewNone.
http://webkit.org/b/37478

  • plugins/PluginPackageNone.cpp: (WebCore::PluginPackage::NPVersion): Add dummy implementation.
  • plugins/PluginViewNone.cpp: (WebCore::PluginView::handleFocusInEvent): Add dummy implementation. (WebCore::PluginView::handleFocusOutEvent): Add dummy implementation.
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r57867 r57873  
     12010-04-19  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by David Hyatt.
     4
     5        Add missing dummy implementations in PluginPackageNone and PluginViewNone.
     6        http://webkit.org/b/37478
     7
     8        * plugins/PluginPackageNone.cpp:
     9        (WebCore::PluginPackage::NPVersion): Add dummy implementation.
     10        * plugins/PluginViewNone.cpp:
     11        (WebCore::PluginView::handleFocusInEvent): Add dummy implementation.
     12        (WebCore::PluginView::handleFocusOutEvent): Add dummy implementation.
     13
    1142010-04-19  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/WebCore/plugins/PluginPackageNone.cpp

    r49515 r57873  
    4343}
    4444
     45#if ENABLE(NETSCAPE_PLUGIN_API)
     46uint16 PluginPackage::NPVersion() const
     47{
     48    return 0;
    4549}
     50#endif
     51
     52}
  • trunk/WebCore/plugins/PluginViewNone.cpp

    r57864 r57873  
    135135}
    136136
     137#if defined(XP_UNIX) && ENABLE(NETSCAPE_PLUGIN_API)
     138void PluginView::handleFocusInEvent()
     139{
     140}
     141
     142void PluginView::handleFocusOutEvent()
     143{
     144}
     145#endif
     146
    137147} // namespace WebCore
Note: See TracChangeset for help on using the changeset viewer.