diff --git a/cef3/include/capi/cef_request_handler_capi.h b/cef3/include/capi/cef_request_handler_capi.h index c71653179..d2a9477d2 100644 --- a/cef3/include/capi/cef_request_handler_capi.h +++ b/cef3/include/capi/cef_request_handler_capi.h @@ -132,9 +132,8 @@ typedef struct _cef_request_handler_t { // Called on the IO thread when the browser needs credentials from the user. // |isProxy| indicates whether the host is a proxy server. |host| contains the // hostname and |port| contains the port number. Return true (1) to continue - // the request and call cef_auth_callback_t::Complete() when the - // authentication information is available. Return false (0) to cancel the - // request. + // the request and call cef_auth_callback_t::cont() when the authentication + // information is available. Return false (0) to cancel the request. /// int (CEF_CALLBACK *get_auth_credentials)(struct _cef_request_handler_t* self, struct _cef_browser_t* browser, struct _cef_frame_t* frame, int isProxy, @@ -145,9 +144,9 @@ typedef struct _cef_request_handler_t { // Called on the IO thread when JavaScript requests a specific storage quota // size via the webkitStorageInfo.requestQuota function. |origin_url| is the // origin of the page making the request. |new_size| is the requested quota - // size in bytes. Return true (1) and call cef_quota_callback_t::Complete() - // either in this function or at a later time to grant or deny the request. - // Return false (0) to cancel the request. + // size in bytes. Return true (1) and call cef_quota_callback_t::cont() either + // in this function or at a later time to grant or deny the request. Return + // false (0) to cancel the request. /// int (CEF_CALLBACK *on_quota_request)(struct _cef_request_handler_t* self, struct _cef_browser_t* browser, const cef_string_t* origin_url, diff --git a/cef3/include/cef_request_handler.h b/cef3/include/cef_request_handler.h index 42ab13f0a..e01f89189 100644 --- a/cef3/include/cef_request_handler.h +++ b/cef3/include/cef_request_handler.h @@ -138,7 +138,7 @@ class CefRequestHandler : public virtual CefBase { // Called on the IO thread when the browser needs credentials from the user. // |isProxy| indicates whether the host is a proxy server. |host| contains the // hostname and |port| contains the port number. Return true to continue the - // request and call CefAuthCallback::Complete() when the authentication + // request and call CefAuthCallback::Continue() when the authentication // information is available. Return false to cancel the request. /// /*--cef(optional_param=realm)--*/ @@ -157,7 +157,7 @@ class CefRequestHandler : public virtual CefBase { // Called on the IO thread when JavaScript requests a specific storage quota // size via the webkitStorageInfo.requestQuota function. |origin_url| is the // origin of the page making the request. |new_size| is the requested quota - // size in bytes. Return true and call CefQuotaCallback::Complete() either in + // size in bytes. Return true and call CefQuotaCallback::Continue() either in // this function or at a later time to grant or deny the request. Return false // to cancel the request. ///