| Index: third_party/WebKit/public/web/WebLocalFrame.h
|
| diff --git a/third_party/WebKit/public/web/WebLocalFrame.h b/third_party/WebKit/public/web/WebLocalFrame.h
|
| index 0196d82487f205c9580d8ad3168e860e68d6bc5d..a0c42bc8bf13fb1def6038603aa81ee0221b9733 100644
|
| --- a/third_party/WebKit/public/web/WebLocalFrame.h
|
| +++ b/third_party/WebKit/public/web/WebLocalFrame.h
|
| @@ -11,6 +11,7 @@
|
| #include "WebFrameLoadType.h"
|
| #include "WebHistoryItem.h"
|
| #include "public/platform/WebCachePolicy.h"
|
| +#include "public/platform/WebFocusType.h"
|
| #include "public/platform/WebURLError.h"
|
| #include "public/platform/WebURLRequest.h"
|
| #include "public/platform/site_engagement.mojom-shared.h"
|
| @@ -619,6 +620,13 @@ class WebLocalFrame : public WebFrame {
|
| // If set to false, do not draw scrollbars on this frame's view.
|
| virtual void SetCanHaveScrollbars(bool) = 0;
|
|
|
| + // Advance the focus of the WebView to next text input element from current
|
| + // input field wrt sequential navigation with TAB or Shift + TAB
|
| + // WebFocusTypeForward simulates TAB and WebFocusTypeBackward simulates
|
| + // Shift + TAB. (Will be extended to other form controls like select element,
|
| + // checkbox, radio etc.)
|
| + virtual void AdvanceFocusInForm(WebFocusType) = 0;
|
| +
|
| // Testing ------------------------------------------------------------------
|
|
|
| // Dumps the layer tree, used by the accelerated compositor, in
|
|
|