diff options
Diffstat (limited to 'chrome/views/chrome_menu.cc')
-rw-r--r-- | chrome/views/chrome_menu.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/views/chrome_menu.cc b/chrome/views/chrome_menu.cc index 1b8cb4d..393afe0 100644 --- a/chrome/views/chrome_menu.cc +++ b/chrome/views/chrome_menu.cc @@ -111,7 +111,7 @@ static bool show_mnemonics; using gfx::NativeTheme; -namespace ChromeViews { +namespace views { // Calculates all sizes that we can from the OS. // @@ -1722,8 +1722,8 @@ void MenuController::OnMouseDragged(SubmenuView* source, return; if (possible_drag_) { - if (ChromeViews::View::ExceededDragThreshold(event.x() - press_x_, - event.y() - press_y_)) { + if (View::ExceededDragThreshold(event.x() - press_x_, + event.y() - press_y_)) { MenuItemView* item = state_.item; DCHECK(item); // Points are in the coordinates of the submenu, need to map to that of @@ -2719,5 +2719,5 @@ void MenuController::StopScrolling() { scroll_task_.reset(NULL); } -} // namespace ChromeViews +} // namespace views |