| Index: third_party/WebKit/Source/core/page/ContextMenuClient.h
|
| diff --git a/third_party/WebKit/Source/core/page/ContextMenuClient.h b/third_party/WebKit/Source/core/page/ContextMenuClient.h
|
| index 56fa88138602897e08805639b015c106750625f0..be8ab1caecb9484fda1989296f292fd423b0e55b 100644
|
| --- a/third_party/WebKit/Source/core/page/ContextMenuClient.h
|
| +++ b/third_party/WebKit/Source/core/page/ContextMenuClient.h
|
| @@ -26,6 +26,8 @@
|
| #ifndef ContextMenuClient_h
|
| #define ContextMenuClient_h
|
|
|
| +#include "core/events/MouseEvent.h"
|
| +
|
| namespace blink {
|
|
|
| class ContextMenu;
|
| @@ -35,7 +37,8 @@ class ContextMenuClient {
|
| virtual ~ContextMenuClient() {}
|
|
|
| // Returns whether a Context Menu was actually shown.
|
| - virtual bool ShowContextMenu(const ContextMenu*, bool from_touch) = 0;
|
| + virtual bool ShowContextMenu(const ContextMenu*,
|
| + MouseEvent::SyntheticEventType) = 0;
|
| virtual void ClearContextMenu() = 0;
|
| };
|
|
|
|
|