Chromium Code Reviews| 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 b4335d92fa15f7ede8a4b4dc93902c2488cfd6cf..30208420c7be3b112088fe805c89721e94f4d29e 100644 |
| --- a/third_party/WebKit/Source/core/page/ContextMenuClient.h |
| +++ b/third_party/WebKit/Source/core/page/ContextMenuClient.h |
| @@ -33,7 +33,7 @@ class ContextMenu; |
| class ContextMenuClient { |
| public: |
| virtual ~ContextMenuClient() { } |
| - virtual void showContextMenu(const ContextMenu*) = 0; |
| + virtual bool showContextMenu(const ContextMenu*, bool) = 0; |
|
Rick Byers
2016/05/20 14:01:58
nit: please add a comment documenting what these b
amaralp
2016/05/20 16:57:08
Done.
Rick Byers
2016/05/20 19:42:17
Thanks! Still LGTM
|
| virtual void clearContextMenu() = 0; |
| }; |