diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-23 20:17:49 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-23 20:17:49 +0000 |
commit | 561b6d749d7849f3fe2c859e8c43b9f10bac97a9 (patch) | |
tree | e2359b12c81234a1f7fb45030f584fa03e42295f | |
parent | 52e598fbfe4faa6eb42afa63914b404aae04729b (diff) | |
download | chromium_src-561b6d749d7849f3fe2c859e8c43b9f10bac97a9.zip chromium_src-561b6d749d7849f3fe2c859e8c43b9f10bac97a9.tar.gz chromium_src-561b6d749d7849f3fe2c859e8c43b9f10bac97a9.tar.bz2 |
The ContextMenuCapturing.ContextMenuCapturing test from the test shell tests was broken.
It was caused by my previous change 4043 (adding page info to right-click menu). I modified an API and did not propagate the change to test shell, so the default (empty) implementation was used.
TBR=nsylvain
Review URL: http://codereview.chromium.org/4235
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2517 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.cc | 3 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc index a012431..9339961 100644 --- a/webkit/tools/test_shell/test_webview_delegate.cc +++ b/webkit/tools/test_shell/test_webview_delegate.cc @@ -486,7 +486,8 @@ void TestWebViewDelegate::ShowContextMenu(WebView* webview, const GURL& frame_url, const std::wstring& selection_text, const std::wstring& misspelled_word, - int edit_flags) { + int edit_flags, + const std::string& security_info) { CapturedContextMenuEvent context(type, x, y); captured_context_menu_events_.push_back(context); } diff --git a/webkit/tools/test_shell/test_webview_delegate.h b/webkit/tools/test_shell/test_webview_delegate.h index 02b1422..39c1421 100644 --- a/webkit/tools/test_shell/test_webview_delegate.h +++ b/webkit/tools/test_shell/test_webview_delegate.h @@ -100,7 +100,8 @@ class TestWebViewDelegate : public base::RefCounted<TestWebViewDelegate>, const GURL& frame_url, const std::wstring& selection_text, const std::wstring& misspelled_word, - int edit_flags); + int edit_flags, + const std::string& security_info); virtual void DidStartProvisionalLoadForFrame( WebView* webview, WebFrame* frame, |