Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: content/public/browser/render_widget_host_view.h

Issue 2370393002: Extracting placeholder information from Webkit to Blimp (Closed)
Patch Set: Extracting info through RHVW Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698