Changeset 73159 in webkit


Ignore:
Timestamp:
Dec 2, 2010 10:41:38 AM (13 years ago)
Author:
andersca@apple.com
Message:

Plug-ins should be able to update the mouse cursor
https://bugs.webkit.org/show_bug.cgi?id=50399

Reviewed by Sam Weinig.

WebKit2:

Call WKEnableSettingCursorWhenInBackground.

  • PluginProcess/mac/PluginProcessMainMac.mm:

(WebKit::PluginProcessMain):

WebKitLibraries:

Add WKEnableSettingCursorWhenInBackground.

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLeopard.a:
  • libWebKitSystemInterfaceSnowLeopard.a:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r73154 r73159  
     12010-12-02  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        Plug-ins should be able to update the mouse cursor
     6        https://bugs.webkit.org/show_bug.cgi?id=50399
     7
     8        Call WKEnableSettingCursorWhenInBackground.
     9
     10        * PluginProcess/mac/PluginProcessMainMac.mm:
     11        (WebKit::PluginProcessMain):
     12
    1132010-12-02  Sam Weinig  <sam@webkit.org>
    214
  • trunk/WebKit2/PluginProcess/mac/PluginProcessMainMac.mm

    r72972 r73159  
    3535#include <wtf/text/CString.h>
    3636#include <wtf/text/WTFString.h>
     37#include <WebKitSystemInterface.h>
    3738
    3839// FIXME: We should be doing this another way.
     
    7273#endif
    7374
     75    // FIXME: It would be better to proxy set cursor calls over to the UI process instead of
     76    // allowing plug-ins to change the mouse cursor at any time.
     77    WKEnableSettingCursorWhenInBackground();
     78
    7479    JSC::initializeThreading();
    7580    WTF::initializeMainThread();
  • trunk/WebKitLibraries/ChangeLog

    r73075 r73159  
     12010-12-02  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        Plug-ins should be able to update the mouse cursor
     6        https://bugs.webkit.org/show_bug.cgi?id=50399
     7
     8        Add WKEnableSettingCursorWhenInBackground.
     9
     10        * WebKitSystemInterface.h:
     11        * libWebKitSystemInterfaceLeopard.a:
     12        * libWebKitSystemInterfaceSnowLeopard.a:
     13
    1142010-12-01  Adam Roben  <aroben@apple.com>
    215
  • trunk/WebKitLibraries/WebKitSystemInterface.h

    r72829 r73159  
    331331#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD)
    332332void WKSyncSurfaceToView(NSView *view);
     333
     334void WKEnableSettingCursorWhenInBackground(void);
    333335#endif
    334336
Note: See TracChangeset for help on using the changeset viewer.