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

Unified Diff: Source/core/page/ChromeClient.h

Issue 72543005: Get rid of explict editor dependency from text field (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-11-15T16:10:10 Created 7 years, 1 month 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: Source/core/page/ChromeClient.h
diff --git a/Source/core/page/ChromeClient.h b/Source/core/page/ChromeClient.h
index 23da08db88f6f66f224982b0c8a83331bb51aff9..8ff0e89b1283a77d32765fe5a7c43c5ed84e8bee 100644
--- a/Source/core/page/ChromeClient.h
+++ b/Source/core/page/ChromeClient.h
@@ -261,6 +261,9 @@ public:
virtual bool isChromeClientImpl() const { return false; }
virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) { };
+ virtual bool doTextFieldCommandFromEvent(HTMLInputElement*, KeyboardEvent*) { return false; }
tkent 2013/11/15 08:18:06 nit: The return value is not used. This can be voi
yosin_UTC9 2013/11/15 11:06:01 Done.
+ virtual void textDidChangeInTextField(HTMLInputElement*) { }
+ virtual void textFieldDidEndEditing(HTMLInputElement*) { }
// Notifies the client of a new popup widget. The client should place
// and size the widget with the given bounds, relative to the screen.

Powered by Google App Engine
This is Rietveld 408576698