mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Create 1916 release branch for CEF3.
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1916@1654 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
65
patch/patches/views_webview_304341.patch
Normal file
65
patch/patches/views_webview_304341.patch
Normal file
@@ -0,0 +1,65 @@
|
||||
Index: web_dialog_view.cc
|
||||
===================================================================
|
||||
--- web_dialog_view.cc (revision 261035)
|
||||
+++ web_dialog_view.cc (working copy)
|
||||
@@ -257,13 +257,6 @@
|
||||
return true;
|
||||
}
|
||||
|
||||
-bool WebDialogView::HandleContextMenu(
|
||||
- const content::ContextMenuParams& params) {
|
||||
- if (delegate_)
|
||||
- return delegate_->HandleContextMenu(params);
|
||||
- return WebDialogWebContentsDelegate::HandleContextMenu(params);
|
||||
-}
|
||||
-
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// content::WebContentsDelegate implementation:
|
||||
|
||||
@@ -337,6 +330,15 @@
|
||||
*proceed_to_fire_unload = proceed;
|
||||
}
|
||||
|
||||
+bool WebDialogView::HandleContextMenu(
|
||||
+ content::RenderFrameHost* render_frame_host,
|
||||
+ const content::ContextMenuParams& params) {
|
||||
+ if (delegate_)
|
||||
+ return delegate_->HandleContextMenu(params);
|
||||
+ return WebDialogWebContentsDelegate::HandleContextMenu(render_frame_host,
|
||||
+ params);
|
||||
+}
|
||||
+
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// WebDialogView, private:
|
||||
|
||||
Index: web_dialog_view.h
|
||||
===================================================================
|
||||
--- web_dialog_view.h (revision 261035)
|
||||
+++ web_dialog_view.h (working copy)
|
||||
@@ -74,6 +74,7 @@
|
||||
virtual const views::Widget* GetWidget() const OVERRIDE;
|
||||
|
||||
// Overridden from ui::WebDialogDelegate:
|
||||
+ using ui::WebDialogDelegate::HandleContextMenu;
|
||||
virtual ui::ModalType GetDialogModalType() const OVERRIDE;
|
||||
virtual base::string16 GetDialogTitle() const OVERRIDE;
|
||||
virtual GURL GetDialogContentURL() const OVERRIDE;
|
||||
@@ -91,8 +92,6 @@
|
||||
virtual void OnCloseContents(content::WebContents* source,
|
||||
bool* out_close_dialog) OVERRIDE;
|
||||
virtual bool ShouldShowDialogTitle() const OVERRIDE;
|
||||
- virtual bool HandleContextMenu(
|
||||
- const content::ContextMenuParams& params) OVERRIDE;
|
||||
|
||||
// Overridden from content::WebContentsDelegate:
|
||||
virtual void MoveContents(content::WebContents* source,
|
||||
@@ -115,6 +114,9 @@
|
||||
virtual void BeforeUnloadFired(content::WebContents* tab,
|
||||
bool proceed,
|
||||
bool* proceed_to_fire_unload) OVERRIDE;
|
||||
+ virtual bool HandleContextMenu(
|
||||
+ content::RenderFrameHost* render_frame_host,
|
||||
+ const content::ContextMenuParams& params) OVERRIDE;
|
||||
|
||||
private:
|
||||
FRIEND_TEST_ALL_PREFIXES(WebDialogBrowserTest, WebContentRendered);
|
Reference in New Issue
Block a user