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

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

Issue 6384004: Browser should get notified if a views textfield changes focus. In addition, (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: minor change Created 9 years, 11 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: views/controls/textfield/textfield.cc
diff --git a/views/controls/textfield/textfield.cc b/views/controls/textfield/textfield.cc
index a228ed970e2480e3b1da0406c3231de7aef92fb9..82c2d49c0edd9f9ee2981d37e5d03de996e150c9 100644
--- a/views/controls/textfield/textfield.cc
+++ b/views/controls/textfield/textfield.cc
@@ -352,6 +352,10 @@ void Textfield::WillLoseFocus() {
native_wrapper_->HandleWillLoseFocus();
}
+View::VirtualKeyboardType Textfield::GetVirtualKeyboardType() {
+ return View::REGULAR_KEYBOARD;
+}
+
AccessibilityTypes::Role Textfield::GetAccessibleRole() {
return AccessibilityTypes::ROLE_TEXT;
}

Powered by Google App Engine
This is Rietveld 408576698