mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Fix spelling error in OnProcessMessageReceived (issue #636).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@689 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -116,7 +116,7 @@ typedef struct _cef_client_t {
|
||||
// (1) if the message was handled or false (0) otherwise. Do not keep a
|
||||
// reference to or attempt to access the message outside of this callback.
|
||||
///
|
||||
int (CEF_CALLBACK *on_process_message_recieved)(struct _cef_client_t* self,
|
||||
int (CEF_CALLBACK *on_process_message_received)(struct _cef_client_t* self,
|
||||
struct _cef_browser_t* browser, enum cef_process_id_t source_process,
|
||||
struct _cef_process_message_t* message);
|
||||
} cef_client_t;
|
||||
|
@@ -118,7 +118,7 @@ typedef struct _cef_render_process_handler_t {
|
||||
// (1) if the message was handled or false (0) otherwise. Do not keep a
|
||||
// reference to or attempt to access the message outside of this callback.
|
||||
///
|
||||
int (CEF_CALLBACK *on_process_message_recieved)(
|
||||
int (CEF_CALLBACK *on_process_message_received)(
|
||||
struct _cef_render_process_handler_t* self,
|
||||
struct _cef_browser_t* browser, enum cef_process_id_t source_process,
|
||||
struct _cef_process_message_t* message);
|
||||
|
@@ -137,7 +137,7 @@ class CefClient : public virtual CefBase {
|
||||
// or attempt to access the message outside of this callback.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual bool OnProcessMessageRecieved(CefRefPtr<CefBrowser> browser,
|
||||
virtual bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
|
||||
CefProcessId source_process,
|
||||
CefRefPtr<CefProcessMessage> message) {
|
||||
return false;
|
||||
|
@@ -114,7 +114,7 @@ class CefRenderProcessHandler : public virtual CefBase {
|
||||
// or attempt to access the message outside of this callback.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual bool OnProcessMessageRecieved(CefRefPtr<CefBrowser> browser,
|
||||
virtual bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
|
||||
CefProcessId source_process,
|
||||
CefRefPtr<CefProcessMessage> message) {
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user