mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Fix OnResourceResponse spelling error (issue #270).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@260 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -1102,10 +1102,10 @@ public:
|
||||
// modified as it arrives.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void OnResourceReponse(CefRefPtr<CefBrowser> browser,
|
||||
const CefString& url,
|
||||
CefRefPtr<CefResponse> response,
|
||||
CefRefPtr<CefContentFilter>& filter) {}
|
||||
virtual void OnResourceResponse(CefRefPtr<CefBrowser> browser,
|
||||
const CefString& url,
|
||||
CefRefPtr<CefResponse> response,
|
||||
CefRefPtr<CefContentFilter>& filter) {}
|
||||
|
||||
///
|
||||
// Called on the IO thread to handle requests for URLs with an unknown
|
||||
|
@@ -937,7 +937,7 @@ typedef struct _cef_request_handler_t
|
||||
// received. Set |filter| if response content needs to be monitored and/or
|
||||
// modified as it arrives.
|
||||
///
|
||||
void (CEF_CALLBACK *on_resource_reponse)(struct _cef_request_handler_t* self,
|
||||
void (CEF_CALLBACK *on_resource_response)(struct _cef_request_handler_t* self,
|
||||
struct _cef_browser_t* browser, const cef_string_t* url,
|
||||
struct _cef_response_t* response,
|
||||
struct _cef_content_filter_t** filter);
|
||||
|
Reference in New Issue
Block a user