| Index: third_party/WebKit/public/web/WebFrameClient.h
|
| diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
|
| index bc6314859ce7219f13cd1f6e9371f2a55a510c40..72ac9dcb419e7dde49724def0add4c709a2ffe53 100644
|
| --- a/third_party/WebKit/public/web/WebFrameClient.h
|
| +++ b/third_party/WebKit/public/web/WebFrameClient.h
|
| @@ -399,6 +399,14 @@ public:
|
| // operations.
|
| virtual void didChangeSelection(bool isSelectionEmpty) { }
|
|
|
| + // This method is called in response to handleInputEvent() when the
|
| + // default action for the current keyboard event is not suppressed by the
|
| + // page, to give the embedder a chance to handle the keyboard event
|
| + // specially.
|
| + //
|
| + // Returns true if the keyboard event was handled by the embedder,
|
| + // indicating that the default action should be suppressed.
|
| + virtual bool handleCurrentKeyboardEvent() { return false; }
|
|
|
| // Dialogs -------------------------------------------------------------
|
|
|
|
|