mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Update due to underlying chromium changes.
- security_info attribute added to OnCompletedRequest() in ResourceLoaderBridge. - More functions moved into webkit_glue::WebKitClientImpl. - First parameter of WebViewDelegate::RunJavaScript*() methods changed from WebView pointer to WebFrame pointer. - np_v8object.h renamed to NPV8Object.h and other related naming changes. - Add support for v8 gears and interval extensions. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@21 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -63,11 +63,11 @@ class BrowserWebViewDelegate : public base::RefCounted<BrowserWebViewDelegate>,
|
||||
const GURL& url,
|
||||
const GURL& referrer,
|
||||
WindowOpenDisposition disposition);
|
||||
virtual void RunJavaScriptAlert(WebView* webview,
|
||||
virtual void RunJavaScriptAlert(WebFrame* webframe,
|
||||
const std::wstring& message);
|
||||
virtual bool RunJavaScriptConfirm(WebView* webview,
|
||||
virtual bool RunJavaScriptConfirm(WebFrame* webframe,
|
||||
const std::wstring& message);
|
||||
virtual bool RunJavaScriptPrompt(WebView* webview,
|
||||
virtual bool RunJavaScriptPrompt(WebFrame* webframe,
|
||||
const std::wstring& message,
|
||||
const std::wstring& default_value,
|
||||
std::wstring* result);
|
||||
@@ -226,9 +226,9 @@ class BrowserWebViewDelegate : public base::RefCounted<BrowserWebViewDelegate>,
|
||||
void UpdateAddressBar(WebView* webView);
|
||||
|
||||
// Default handling of JavaScript messages.
|
||||
void ShowJavaScriptAlert(WebView* webview, const std::wstring& message);
|
||||
bool ShowJavaScriptConfirm(WebView* webview, const std::wstring& message);
|
||||
bool ShowJavaScriptPrompt(WebView* webview, const std::wstring& message,
|
||||
void ShowJavaScriptAlert(WebFrame* webframe, const std::wstring& message);
|
||||
bool ShowJavaScriptConfirm(WebFrame* webframe, const std::wstring& message);
|
||||
bool ShowJavaScriptPrompt(WebFrame* webframe, const std::wstring& message,
|
||||
const std::wstring& default_value, std::wstring* result);
|
||||
|
||||
// In the Mac code, this is called to trigger the end of a test after the
|
||||
|
Reference in New Issue
Block a user