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

Side by Side Diff: ash/shelf/shelf_view.cc

Issue 2036353002: mash: Move ash/common/wm/shelf to ash/common/shelf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 4 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
« no previous file with comments | « ash/shelf/shelf_util.cc ('k') | ash/shelf/shelf_view_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ash/shelf/shelf_view.h" 5 #include "ash/shelf/shelf_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/ash_constants.h" 10 #include "ash/ash_constants.h"
11 #include "ash/ash_switches.h" 11 #include "ash/ash_switches.h"
12 #include "ash/aura/wm_window_aura.h" 12 #include "ash/aura/wm_window_aura.h"
13 #include "ash/common/shelf/shelf_constants.h"
13 #include "ash/common/wm/root_window_finder.h" 14 #include "ash/common/wm/root_window_finder.h"
14 #include "ash/drag_drop/drag_image_view.h" 15 #include "ash/drag_drop/drag_image_view.h"
15 #include "ash/metrics/user_metrics_recorder.h" 16 #include "ash/metrics/user_metrics_recorder.h"
16 #include "ash/scoped_target_root_window.h" 17 #include "ash/scoped_target_root_window.h"
17 #include "ash/shelf/app_list_button.h" 18 #include "ash/shelf/app_list_button.h"
18 #include "ash/shelf/overflow_bubble.h" 19 #include "ash/shelf/overflow_bubble.h"
19 #include "ash/shelf/overflow_bubble_view.h" 20 #include "ash/shelf/overflow_bubble_view.h"
20 #include "ash/shelf/overflow_button.h" 21 #include "ash/shelf/overflow_button.h"
21 #include "ash/shelf/shelf.h" 22 #include "ash/shelf/shelf.h"
22 #include "ash/shelf/shelf_button.h" 23 #include "ash/shelf/shelf_button.h"
23 #include "ash/shelf/shelf_constants.h"
24 #include "ash/shelf/shelf_delegate.h" 24 #include "ash/shelf/shelf_delegate.h"
25 #include "ash/shelf/shelf_icon_observer.h" 25 #include "ash/shelf/shelf_icon_observer.h"
26 #include "ash/shelf/shelf_item_delegate_manager.h" 26 #include "ash/shelf/shelf_item_delegate_manager.h"
27 #include "ash/shelf/shelf_menu_model.h" 27 #include "ash/shelf/shelf_menu_model.h"
28 #include "ash/shelf/shelf_model.h" 28 #include "ash/shelf/shelf_model.h"
29 #include "ash/shelf/shelf_widget.h" 29 #include "ash/shelf/shelf_widget.h"
30 #include "ash/shell.h" 30 #include "ash/shell.h"
31 #include "ash/shell_delegate.h" 31 #include "ash/shell_delegate.h"
32 #include "base/auto_reset.h" 32 #include "base/auto_reset.h"
33 #include "base/metrics/histogram.h" 33 #include "base/metrics/histogram.h"
(...skipping 1857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1891 1891
1892 int ShelfView::CalculateShelfDistance(const gfx::Point& coordinate) const { 1892 int ShelfView::CalculateShelfDistance(const gfx::Point& coordinate) const {
1893 const gfx::Rect bounds = GetBoundsInScreen(); 1893 const gfx::Rect bounds = GetBoundsInScreen();
1894 int distance = shelf_->SelectValueForShelfAlignment( 1894 int distance = shelf_->SelectValueForShelfAlignment(
1895 bounds.y() - coordinate.y(), coordinate.x() - bounds.right(), 1895 bounds.y() - coordinate.y(), coordinate.x() - bounds.right(),
1896 bounds.x() - coordinate.x()); 1896 bounds.x() - coordinate.x());
1897 return distance > 0 ? distance : 0; 1897 return distance > 0 ? distance : 0;
1898 } 1898 }
1899 1899
1900 } // namespace ash 1900 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shelf/shelf_util.cc ('k') | ash/shelf/shelf_view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698