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

Side by Side Diff: ui/views/controls/textfield/textfield_controller.cc

Issue 2952763002: SearchBoxView now enables/disables cursor based on user interaction. (Closed)
Patch Set: SearchBoxView now enables/disables cursor based on user interaction. Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/controls/textfield/textfield_controller.h" 5 #include "ui/views/controls/textfield/textfield_controller.h"
6 6
7 #include "ui/base/dragdrop/drag_drop_types.h" 7 #include "ui/base/dragdrop/drag_drop_types.h"
8 #include "ui/events/event.h" 8 #include "ui/events/event.h"
9 9
10 namespace views { 10 namespace views {
11 11
12 bool TextfieldController::HandleKeyEvent(Textfield* sender, 12 bool TextfieldController::HandleKeyEvent(Textfield* sender,
13 const ui::KeyEvent& key_event) { 13 const ui::KeyEvent& key_event) {
14 return false; 14 return false;
15 } 15 }
16 16
17 bool TextfieldController::HandleMouseEvent(Textfield* sender, 17 bool TextfieldController::HandleMouseEvent(Textfield* sender,
18 const ui::MouseEvent& mouse_event) { 18 const ui::MouseEvent& mouse_event) {
19 return false; 19 return false;
20 } 20 }
21 21
22 void TextfieldController::NotifyOfGestureEvent() {}
23
22 int TextfieldController::OnDrop(const ui::OSExchangeData& data) { 24 int TextfieldController::OnDrop(const ui::OSExchangeData& data) {
23 return ui::DragDropTypes::DRAG_NONE; 25 return ui::DragDropTypes::DRAG_NONE;
24 } 26 }
25 27
26 } // namespace views 28 } // namespace views
OLDNEW
« ui/app_list/views/search_box_view.h ('K') | « ui/views/controls/textfield/textfield_controller.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698