From 173de1be12780200c62bae5c01965d51ac0eaa31 Mon Sep 17 00:00:00 2001 From: "mpcomplete@google.com" Date: Fri, 15 Aug 2008 18:36:46 +0000 Subject: Step 1 at making Gears run in the renderer process (enabled by switch "--gears-in-renderer"). Requires some changes to gears to work. Most things work if you disable the sandbox. One major hole is that update tasks don't report status to the appropriate renderer. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@954 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/webview_delegate.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'webkit/glue/webview_delegate.h') diff --git a/webkit/glue/webview_delegate.h b/webkit/glue/webview_delegate.h index cf18ca5..5e4cc6c 100644 --- a/webkit/glue/webview_delegate.h +++ b/webkit/glue/webview_delegate.h @@ -474,6 +474,14 @@ class WebViewDelegate : virtual public WebWidgetDelegate { // UIDelegate -------------------------------------------------------------- + // Asks the browser to show a modal HTML dialog. The dialog is passed the + // given arguments as a JSON string, and returns its result as a JSON string + // through json_retval. + virtual void ShowModalHTMLDialog(const GURL& url, int width, int height, + const std::string& json_arguments, + std::string* json_retval) { + } + // Displays a JavaScript alert panel associated with the given view. Clients // should visually indicate that this panel comes from JavaScript. The panel // should have a single OK button. -- cgit v1.1