HomeSort by relevance Sort by last modified time
    Searched refs:CanDrop (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/views/toolbar/
home_button.h 23 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE;
home_button.cc 156 bool HomeButton::CanDrop(const OSExchangeData& data) {
wrench_menu.h 72 virtual bool CanDrop(views::MenuItemView* menu,
browser_actions_container.h 188 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_root_view.h 35 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE;
browser_root_view.cc 47 bool BrowserRootView::CanDrop(const ui::OSExchangeData& data) {
  /external/chromium_org/ui/views/widget/
drop_helper.cc 99 (!view->enabled() || !view->CanDrop(data))) {
109 (!check_can_drop || view->CanDrop(data))) {
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_overflow_menu_controller.h 69 virtual bool CanDrop(views::MenuItemView* menu,
browser_action_overflow_menu_controller.cc 191 bool BrowserActionOverflowMenuController::CanDrop(
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.h 90 virtual bool CanDrop(views::MenuItemView* menu,
bookmark_menu_controller_views.cc 119 bool BookmarkMenuController::CanDrop(MenuItemView* menu,
121 return menu_delegate_->CanDrop(menu, data);
bookmark_menu_delegate.h 108 bool CanDrop(views::MenuItemView* menu, const ui::OSExchangeData& data);
bookmark_bar_view.h 180 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE;
bookmark_menu_delegate.cc 181 bool BookmarkMenuDelegate::CanDrop(MenuItemView* menu,
  /external/chromium_org/ui/views/controls/menu/
menu_delegate.cc 96 bool MenuDelegate::CanDrop(MenuItemView* menu, const OSExchangeData& data) {
114 NOTREACHED() << "If you override CanDrop, you need to override this too";
121 NOTREACHED() << "If you override CanDrop, you need to override this too";
menu_delegate.h 165 virtual bool CanDrop(MenuItemView* menu, const OSExchangeData& data);
177 // only invoked if CanDrop returned true for the parent menu. position
186 // Invoked to perform the drop operation. This is ONLY invoked if CanDrop()
submenu_view.h 73 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE;
submenu_view.cc 201 bool SubmenuView::CanDrop(const OSExchangeData& data) {
203 return GetMenuItem()->GetMenuController()->CanDrop(this, data);
menu_controller.h 135 bool CanDrop(SubmenuView* source, const ui::OSExchangeData& data);
menu_scroll_view_container.cc 49 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE {
  /external/chromium_org/ash/drag_drop/
drag_drop_interactive_uitest.cc 58 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE {
  /external/chromium_org/ui/app_list/views/
apps_grid_view.h 142 virtual bool CanDrop(const OSExchangeData& data) OVERRIDE;
  /external/chromium_org/ui/views/controls/textfield/
textfield.h 215 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE;
textfield_unittest.cc 799 EXPECT_FALSE(textfield_->CanDrop(data));
807 EXPECT_FALSE(textfield_->CanDrop(data));
814 EXPECT_TRUE(textfield_->CanDrop(data));
832 EXPECT_FALSE(textfield_->CanDrop(bad_data));
    [all...]
textfield.cc 799 bool Textfield::CanDrop(const OSExchangeData& data) {
808 DCHECK(CanDrop(event.data()));
834 DCHECK(CanDrop(event.data()));
    [all...]

Completed in 223 milliseconds

1 2