Changeset 64924 in webkit


Ignore:
Timestamp:
Aug 7, 2010 3:32:57 PM (14 years ago)
Author:
weinig@apple.com
Message:

Another fix for the windows build.

  • WebProcess/Plugins/Netscape/NetscapePlugin.cpp:

(WebKit::NetscapePlugin::isAcceleratedCompositingEnabled):

Location:
trunk/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r64922 r64924  
     12010-08-07  Sam Weinig  <sam@webkit.org>
     2
     3        Another fix for the windows build.
     4
     5        * WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
     6        (WebKit::NetscapePlugin::isAcceleratedCompositingEnabled):
     7
    182010-08-07  Sam Weinig  <sam@webkit.org>
    29
  • trunk/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp

    r64919 r64924  
    197197bool NetscapePlugin::isAcceleratedCompositingEnabled()
    198198{
     199#if USE(ACCELERATED_COMPOSITING)
    199200    return m_pluginController->isAcceleratedCompositingEnabled();
     201#else
     202    return false;
     203#endif
    200204}
    201205
Note: See TracChangeset for help on using the changeset viewer.