mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Merge revision 698 and 699 changes:
- Add persistent HTML5 application cache support (issue #543). - Standardize the approach for creating new directories. - Allow empty message parameters passed to CefJSDialogHandler. git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1025@700 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -53,7 +53,7 @@ class CefJSDialogHandler : public virtual CefBase {
|
||||
// Called to run a JavaScript alert message. Return false to display the
|
||||
// default alert or true if you displayed a custom alert.
|
||||
///
|
||||
/*--cef()--*/
|
||||
/*--cef(optional_param=message)--*/
|
||||
virtual bool OnJSAlert(CefRefPtr<CefBrowser> browser,
|
||||
CefRefPtr<CefFrame> frame,
|
||||
const CefString& message) { return false; }
|
||||
@ -63,7 +63,7 @@ class CefJSDialogHandler : public virtual CefBase {
|
||||
// default alert or true if you displayed a custom alert. If you handled the
|
||||
// alert set |retval| to true if the user accepted the confirmation.
|
||||
///
|
||||
/*--cef()--*/
|
||||
/*--cef(optional_param=message)--*/
|
||||
virtual bool OnJSConfirm(CefRefPtr<CefBrowser> browser,
|
||||
CefRefPtr<CefFrame> frame,
|
||||
const CefString& message,
|
||||
@ -75,7 +75,7 @@ class CefJSDialogHandler : public virtual CefBase {
|
||||
// the prompt set |retval| to true if the user accepted the prompt and request
|
||||
// and |result| to the resulting value.
|
||||
///
|
||||
/*--cef()--*/
|
||||
/*--cef(optional_param=message,optional_param=defaultValue)--*/
|
||||
virtual bool OnJSPrompt(CefRefPtr<CefBrowser> browser,
|
||||
CefRefPtr<CefFrame> frame,
|
||||
const CefString& message,
|
||||
|
Reference in New Issue
Block a user