Chromium Code Reviews| Index: content/public/browser/render_widget_host_view.h |
| diff --git a/content/public/browser/render_widget_host_view.h b/content/public/browser/render_widget_host_view.h |
| index ff3127b69e5307fec8eed08e388902514aeeb873..e59e2300334e44b2d9d532f1fc796e2419686bf5 100644 |
| --- a/content/public/browser/render_widget_host_view.h |
| +++ b/content/public/browser/render_widget_host_view.h |
| @@ -7,6 +7,7 @@ |
| #include <memory> |
| +#include "base/callback.h" |
| #include "base/strings/string16.h" |
| #include "build/build_config.h" |
| #include "content/common/content_export.h" |
| @@ -91,6 +92,10 @@ class CONTENT_EXPORT RenderWidgetHostView { |
| // text input system. |
| virtual ui::TextInputClient* GetTextInputClient() = 0; |
| + // Retrieves the text input info associated with the current form. |
| + virtual void FetchTextInputInfo( |
|
David Trainor- moved to gerrit
2016/10/26 01:36:42
It might make sense to pull a struct out for the a
shaktisahu
2016/10/31 23:13:59
Done. Added a struct in content/public/common/form
|
| + base::Callback<void(const std::string&, const std::string&)>& reply) = 0; |
| + |
| // Set focus to the associated View component. |
| virtual void Focus() = 0; |
| // Returns true if the View currently has the focus. |