From 0aef7fc07d00a6d696668e2c07bc533ce573f414 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 7 Jul 2011 14:57:58 +0000 Subject: [PATCH] Remove comment about being able to modify |request| in OnBeforeBrowse (issue #279). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@266 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- include/cef.h | 5 ++--- include/cef_capi.h | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) 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,