mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Add off-screen rendering support for Mac OS-X (issue #540).
- Add patch for ninja build support on Mac OS-X. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@624 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -106,12 +106,13 @@ class CefBrowserImpl : public CefBrowser {
|
||||
virtual void Invalidate(const CefRect& dirtyRect) OVERRIDE;
|
||||
virtual bool GetImage(PaintElementType type, int width, int height,
|
||||
void* buffer) OVERRIDE;
|
||||
virtual void SendKeyEvent(KeyType type, int key, int modifiers, bool sysChar,
|
||||
bool imeChar) OVERRIDE;
|
||||
virtual void SendKeyEvent(KeyType type, const CefKeyInfo& keyInfo,
|
||||
int modifiers) OVERRIDE;
|
||||
virtual void SendMouseClickEvent(int x, int y, MouseButtonType type,
|
||||
bool mouseUp, int clickCount) OVERRIDE;
|
||||
virtual void SendMouseMoveEvent(int x, int y, bool mouseLeave) OVERRIDE;
|
||||
virtual void SendMouseWheelEvent(int x, int y, int delta) OVERRIDE;
|
||||
virtual void SendMouseWheelEvent(int x, int y, int deltaX, int deltaY)
|
||||
OVERRIDE;
|
||||
virtual void SendFocusEvent(bool setFocus) OVERRIDE;
|
||||
virtual void SendCaptureLostEvent() OVERRIDE;
|
||||
|
||||
@ -269,12 +270,11 @@ class CefBrowserImpl : public CefBrowser {
|
||||
void UIT_SetFocus(WebWidgetHost* host, bool enable);
|
||||
void UIT_SetSize(PaintElementType type, int width, int height);
|
||||
void UIT_Invalidate(const CefRect& dirtyRect);
|
||||
void UIT_SendKeyEvent(KeyType type, int key, int modifiers, bool sysChar,
|
||||
bool imeChar);
|
||||
void UIT_SendKeyEvent(KeyType type, const CefKeyInfo& keyInfo, int modifiers);
|
||||
void UIT_SendMouseClickEvent(int x, int y, MouseButtonType type,
|
||||
bool mouseUp, int clickCount);
|
||||
void UIT_SendMouseMoveEvent(int x, int y, bool mouseLeave);
|
||||
void UIT_SendMouseWheelEvent(int x, int y, int delta);
|
||||
void UIT_SendMouseWheelEvent(int x, int y, int deltaX, int deltaY);
|
||||
void UIT_SendFocusEvent(bool setFocus);
|
||||
void UIT_SendCaptureLostEvent();
|
||||
|
||||
|
Reference in New Issue
Block a user