Home
last modified time | relevance | path

Searched refs:drag_operations (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/ui/views/controls/textfield/
Dtextfield_controller.h66 virtual void OnGetDragOperationsForTextfield(int* drag_operations) {} in OnGetDragOperationsForTextfield() argument
Dnative_textfield_views.cc474 int drag_operations = ui::DragDropTypes::DRAG_COPY; in GetDragOperationsForView() local
477 drag_operations = ui::DragDropTypes::DRAG_NONE; in GetDragOperationsForView()
479 drag_operations = in GetDragOperationsForView()
483 controller->OnGetDragOperationsForTextfield(&drag_operations); in GetDragOperationsForView()
484 return drag_operations; in GetDragOperationsForView()
/external/chromium_org/chrome/browser/ui/views/omnibox/
Domnibox_view_views.h124 virtual void OnGetDragOperationsForTextfield(int* drag_operations) OVERRIDE;
Domnibox_view_views.cc766 void OmniboxViewViews::OnGetDragOperationsForTextfield(int* drag_operations) { in OnGetDragOperationsForTextfield() argument
773 *drag_operations |= ui::DragDropTypes::DRAG_LINK; in OnGetDragOperationsForTextfield()
/external/chromium_org/ui/views/
Dview.cc2184 int drag_operations = in ProcessMousePressed() local
2211 if (drag_operations != ui::DragDropTypes::DRAG_NONE) { in ProcessMousePressed()
2378 int drag_operations = GetDragOperations(press_pt); in DoDrag() local
2379 if (drag_operations == ui::DragDropTypes::DRAG_NONE) in DoDrag()
2399 widget->RunShellDrag(this, data, widget_location, drag_operations, source); in DoDrag()