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

Unified Diff: chrome/browser/ui/views/toolbar_view.cc

Issue 10824295: Rid the world of the last of views::Event types: TouchEvent, GestureEvent, MouseWheelEvent, ScrollE… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « chrome/browser/ui/views/toolbar_view.h ('k') | chrome/browser/ui/views/wrench_menu.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/toolbar_view.cc
===================================================================
--- chrome/browser/ui/views/toolbar_view.cc (revision 151481)
+++ chrome/browser/ui/views/toolbar_view.cc (working copy)
@@ -810,7 +810,7 @@
return data.HasURL() || data.HasString();
}
-int ToolbarView::OnDragUpdated(const views::DropTargetEvent& event) {
+int ToolbarView::OnDragUpdated(const ui::DropTargetEvent& event) {
if (event.source_operations() & ui::DragDropTypes::DRAG_COPY) {
return ui::DragDropTypes::DRAG_COPY;
} else if (event.source_operations() & ui::DragDropTypes::DRAG_LINK) {
@@ -819,7 +819,7 @@
return ui::DragDropTypes::DRAG_NONE;
}
-int ToolbarView::OnPerformDrop(const views::DropTargetEvent& event) {
+int ToolbarView::OnPerformDrop(const ui::DropTargetEvent& event) {
return location_bar_->GetLocationEntry()->OnPerformDrop(event);
}
« no previous file with comments | « chrome/browser/ui/views/toolbar_view.h ('k') | chrome/browser/ui/views/wrench_menu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698