diff --git a/include/cef.h b/include/cef.h index 74ff8bfff..d48a5c03b 100644 --- a/include/cef.h +++ b/include/cef.h @@ -1067,9 +1067,8 @@ public: typedef cef_handler_navtype_t NavType; /// - // Called on the UI thread before browser navigation. The client has an - // opportunity to modify the |request| object if desired. Return true to - // cancel the navigation or false to allow the navigation to proceed. + // Called on the UI thread before browser navigation. Return true to cancel + // the navigation or false to allow the navigation to proceed. /// /*--cef()--*/ virtual bool OnBeforeBrowse(CefRefPtr browser, diff --git a/include/cef_capi.h b/include/cef_capi.h index fefe5f31d..89a01035b 100644 --- a/include/cef_capi.h +++ b/include/cef_capi.h @@ -906,8 +906,7 @@ typedef struct _cef_request_handler_t cef_base_t base; /// - // Called on the UI thread before browser navigation. The client has an - // opportunity to modify the |request| object if desired. Return true (1) to + // Called on the UI thread before browser navigation. Return true (1) to // cancel the navigation or false (0) to allow the navigation to proceed. /// int (CEF_CALLBACK *on_before_browse)(struct _cef_request_handler_t* self,