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
This commit is contained in:
Marshall Greenblatt 2011-07-07 14:57:58 +00:00
parent f8cc8c6350
commit 0aef7fc07d
2 changed files with 3 additions and 5 deletions

View File

@ -1067,9 +1067,8 @@ public:
typedef cef_handler_navtype_t NavType; typedef cef_handler_navtype_t NavType;
/// ///
// Called on the UI thread before browser navigation. The client has an // Called on the UI thread before browser navigation. Return true to cancel
// opportunity to modify the |request| object if desired. Return true to // the navigation or false to allow the navigation to proceed.
// cancel the navigation or false to allow the navigation to proceed.
/// ///
/*--cef()--*/ /*--cef()--*/
virtual bool OnBeforeBrowse(CefRefPtr<CefBrowser> browser, virtual bool OnBeforeBrowse(CefRefPtr<CefBrowser> browser,

View File

@ -906,8 +906,7 @@ typedef struct _cef_request_handler_t
cef_base_t base; cef_base_t base;
/// ///
// Called on the UI thread before browser navigation. The client has an // Called on the UI thread before browser navigation. Return true (1) to
// opportunity to modify the |request| object if desired. Return true (1) to
// cancel the navigation or false (0) to allow the navigation to proceed. // cancel the navigation or false (0) to allow the navigation to proceed.
/// ///
int (CEF_CALLBACK *on_before_browse)(struct _cef_request_handler_t* self, int (CEF_CALLBACK *on_before_browse)(struct _cef_request_handler_t* self,