Index: views/controls/textfield/native_textfield_views.h |
diff --git a/views/controls/textfield/native_textfield_views.h b/views/controls/textfield/native_textfield_views.h |
index 17967bbbdc667f17b6828ad22d09a5762f488f4f..aea72520e4b65e3659c122d5e31357eabdd172b0 100644 |
--- a/views/controls/textfield/native_textfield_views.h |
+++ b/views/controls/textfield/native_textfield_views.h |
@@ -215,6 +215,12 @@ class VIEWS_EXPORT NativeTextfieldViews : public TouchSelectionClientView, |
// explicitly if paste succeeded. |
bool Paste(); |
+ // Tracks the mouse clicks for single/double/tripple clicks. |
msw
2011/11/12 02:19:21
typo: triple.
jennyz
2011/11/14 18:28:57
Done.
|
+ void TrackMouseClicks(const MouseEvent& event); |
+ |
+ // Handles mouse press event. |
msw
2011/11/12 02:19:21
grammar: pluralize events.
|
+ void HandleMousePresseEvent(const MouseEvent& event); |
msw
2011/11/12 02:19:21
typo: HandleMousePress*e*Events
jennyz
2011/11/14 18:28:57
Done.
|
+ |
// Checks if a char is ok to be inserted into the textfield. The |ch| is a |
// modified character, i.e., modifiers took effect when generating this char. |
static bool ShouldInsertChar(char16 ch, int flags); |