mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Merge revision 569 and 624 changes:
- Add off-screen rendering support for Mac OS-X (issue #540). - Avoid calling OnSetFocus multiple times (issue #563). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/963@627 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -754,8 +754,8 @@ typedef struct _cef_browser_t
|
||||
// Send a key event to the browser.
|
||||
///
|
||||
void (CEF_CALLBACK *send_key_event)(struct _cef_browser_t* self,
|
||||
enum cef_key_type_t type, int key, int modifiers, int sysChar,
|
||||
int imeChar);
|
||||
enum cef_key_type_t type, const struct _cef_key_info_t* keyInfo,
|
||||
int modifiers);
|
||||
|
||||
///
|
||||
// Send a mouse click event to the browser. The |x| and |y| coordinates are
|
||||
@@ -777,7 +777,7 @@ typedef struct _cef_browser_t
|
||||
// relative to the upper-left corner of the view.
|
||||
///
|
||||
void (CEF_CALLBACK *send_mouse_wheel_event)(struct _cef_browser_t* self,
|
||||
int x, int y, int delta);
|
||||
int x, int y, int deltaX, int deltaY);
|
||||
|
||||
///
|
||||
// Send a focus event to the browser.
|
||||
|
Reference in New Issue
Block a user