Index: content/browser/renderer_host/render_view_host_delegate.h |
diff --git a/content/browser/renderer_host/render_view_host_delegate.h b/content/browser/renderer_host/render_view_host_delegate.h |
index c14fc788b49a437a435971a4504d55e7281c1f49..853ec01409fe11b66c4229e39950ade9d4f345c2 100644 |
--- a/content/browser/renderer_host/render_view_host_delegate.h |
+++ b/content/browser/renderer_host/render_view_host_delegate.h |
@@ -13,6 +13,7 @@ |
#include "base/process_util.h" |
#include "base/string16.h" |
#include "content/common/content_export.h" |
+#include "content/public/common/context_menu_event_type.h" |
#include "content/public/common/javascript_message_type.h" |
#include "content/public/common/media_stream_request.h" |
#include "net/base/load_states.h" |
@@ -400,7 +401,8 @@ class CONTENT_EXPORT RenderViewHostDelegate { |
// A context menu should be shown, to be built using the context information |
// provided in the supplied params. |
- virtual void ShowContextMenu(const ContextMenuParams& params) {} |
+ virtual void ShowContextMenu(const ContextMenuParams& params, |
+ const ContextMenuEventType& type) {} |
// The render view has requested access to media devices listed in |
// |request|, and the client should grant or deny that permission by |