Chromium Code Reviews| Index: ui/app_list/views/apps_grid_view.h |
| diff --git a/ui/app_list/views/apps_grid_view.h b/ui/app_list/views/apps_grid_view.h |
| index ed570e2dac15e9daa7c7fb93b20ee3e1d80517e8..edc96ec50989e8aa905d1ed401c050218b406099 100644 |
| --- a/ui/app_list/views/apps_grid_view.h |
| +++ b/ui/app_list/views/apps_grid_view.h |
| @@ -222,6 +222,8 @@ class APP_LIST_EXPORT AppsGridView : public views::View, |
| // Cancels any context menus showing for app items on the current page. |
| void CancelContextMenusOnCurrentPage(); |
| + bool IsPointWithinDragBuffer(const gfx::Point& point) const; |
|
xiyuan
2013/07/19 16:24:04
nit: Add a comment for this method.
koz (OOO until 15th September)
2013/07/22 00:26:14
Done.
|
| + |
| // Overridden from views::ButtonListener: |
| virtual void ButtonPressed(views::Button* sender, |
| const ui::Event& event) OVERRIDE; |
| @@ -273,6 +275,9 @@ class APP_LIST_EXPORT AppsGridView : public views::View, |
| // The location of |drag_view_| when the drag started. |
| gfx::Point drag_view_start_; |
| + // Page the drag started on. |
| + int drag_start_page_; |
| + |
| #if defined(OS_WIN) && !defined(USE_AURA) |
| // Created when a drag is started (ie: drag exceeds the drag threshold), but |
| // not Run() until supplied with a shortcut path. |