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

Unified Diff: views/controls/textfield/textfield.h

Issue 6034002: Replace Textfield::Keystroke with views::KeyEvent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 10 years 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: views/controls/textfield/textfield.h
diff --git a/views/controls/textfield/textfield.h b/views/controls/textfield/textfield.h
index 9dd1ee9febfdaf3aadd6f65e16d496157f1bfc1a..2fdfe733ef773396d51f6edfa0721851f6ec88c0 100644
--- a/views/controls/textfield/textfield.h
+++ b/views/controls/textfield/textfield.h
@@ -31,6 +31,8 @@
namespace views {
+class KeyEvent;
+
class NativeTextfieldWrapper;
// This class implements a ChromeView that wraps a native text (edit) field.
@@ -94,8 +96,8 @@ class Textfield : public View {
// This method is called to get notified about keystrokes in the edit.
// This method returns true if the message was handled and should not be
// processed further. If it returns false the processing continues.
- virtual bool HandleKeystroke(Textfield* sender,
- const Textfield::Keystroke& keystroke) = 0;
+ virtual bool HandleKeyEvent(Textfield* sender,
+ const KeyEvent& key_event) = 0;
};
enum StyleFlags {
« no previous file with comments | « views/controls/textfield/native_textfield_win.cc ('k') | views/event.h » ('j') | views/event.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698