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

Unified Diff: Source/web/ChromeClientImpl.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/web/ChromeClientImpl.h
diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
index 64f92b484be2d08c5c7475898883f3bf564e7eaa..b77fe2125351813c9111180eb557f0e855cae608 100644
--- a/Source/web/ChromeClientImpl.h
+++ b/Source/web/ChromeClientImpl.h
@@ -46,6 +46,8 @@ class ColorChooserClient;
class Element;
class FileChooser;
class GraphicsLayerFactory;
+class HTMLInputElement;
+class KeyboardEvent;
class PopupContainer;
class PopupMenuClient;
class RenderBox;
@@ -184,6 +186,9 @@ public:
virtual bool isPointerLocked();
virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element> >&) OVERRIDE;
+ virtual bool doTextFieldCommandFromEvent(WebCore::HTMLInputElement*, WebCore::KeyboardEvent*) OVERRIDE;
+ virtual void textDidChangeInTextField(WebCore::HTMLInputElement*) OVERRIDE;
+ virtual void textFieldDidEndEditing(WebCore::HTMLInputElement*) OVERRIDE;
private:
virtual bool isChromeClientImpl() const OVERRIDE { return true; }

Powered by Google App Engine
This is Rietveld 408576698