diff options
author | yaar@chromium.org <yaar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-06 18:38:46 +0000 |
---|---|---|
committer | yaar@chromium.org <yaar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-06 18:38:46 +0000 |
commit | a112832e7f2b611a814f68b6f1335159f8f4dec0 (patch) | |
tree | 6610341329b1ea68c4dbeaa0631a7a83d7f14f70 /webkit/tools | |
parent | 9c92338c5f8770c440799d24387c3733fd6d826b (diff) | |
download | chromium_src-a112832e7f2b611a814f68b6f1335159f8f4dec0.zip chromium_src-a112832e7f2b611a814f68b6f1335159f8f4dec0.tar.gz chromium_src-a112832e7f2b611a814f68b6f1335159f8f4dec0.tar.bz2 |
Move runFileChooser from webview_delegate to WebViewClient.
More details here: http://code.google.com/p/chromium/issues/detail?id=23385
Review URL: http://codereview.chromium.org/259031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28134 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/test_webview_delegate.h b/webkit/tools/test_shell/test_webview_delegate.h index ccf4404..68a6b46 100644 --- a/webkit/tools/test_shell/test_webview_delegate.h +++ b/webkit/tools/test_shell/test_webview_delegate.h @@ -126,6 +126,10 @@ class TestWebViewDelegate : public WebViewDelegate, virtual bool isShowingSpellingUI() { return false; } virtual void updateSpellingUIWithMisspelledWord( const WebKit::WebString& word) {} + virtual bool runFileChooser( + bool multi_select, const WebKit::WebString& title, + const WebKit::WebString& initial_value, + WebKit::WebFileChooserCompletion* chooser_completion){ return false; } virtual void runModalAlertDialog( WebKit::WebFrame* frame, const WebKit::WebString& message); virtual bool runModalConfirmDialog( |