Chromium Code Reviews| Index: chrome/browser/ui/views/app_list/win/app_list_win.h |
| diff --git a/chrome/browser/ui/views/app_list/win/app_list_win.h b/chrome/browser/ui/views/app_list/win/app_list_win.h |
| index 37d5643aa27120c0f810b798c85e3a9d2b715c5d..1ee2430e18d48001cd41d141e727c3adf47bc8ca 100644 |
| --- a/chrome/browser/ui/views/app_list/win/app_list_win.h |
| +++ b/chrome/browser/ui/views/app_list/win/app_list_win.h |
| @@ -5,26 +5,20 @@ |
| #ifndef CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_WIN_H_ |
| #define CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_WIN_H_ |
| -#include "base/callback_forward.h" |
| -#include "chrome/browser/ui/app_list/app_list.h" |
| -#include "chrome/browser/ui/views/app_list/win/activation_tracker_win.h" |
| -#include "ui/app_list/views/app_list_view.h" |
| +namespace app_list { |
| +class AppListView; |
| +} |
| namespace gfx { |
| class Display; |
| class Point; |
| +class Rect; |
| class Size; |
| -} // namespace gfx |
| +} |
| -// Responsible for positioning, hiding and showing an AppListView on Windows. |
| -// This includes watching window activation/deactivation messages to determine |
| -// if the user has clicked away from it. |
| -class AppListWin : public AppList { |
| +// Responsible for positioning an AppListView on Windows. |
| +class AppListWin { |
|
Matt Giuca
2014/04/29 03:52:51
Same comment as for AppListLinux.
tapted
2014/04/30 03:26:03
Done.
|
| public: |
| - AppListWin(app_list::AppListView* view, |
| - const base::Closure& on_should_dismiss); |
| - virtual ~AppListWin(); |
| - |
| // Finds the position for a window to anchor it to the taskbar. This chooses |
| // the most appropriate position for the window based on whether the taskbar |
| // exists, the position of the taskbar, and the mouse cursor. Returns the |
| @@ -35,22 +29,7 @@ class AppListWin : public AppList { |
| const gfx::Point& cursor, |
| const gfx::Rect& taskbar_rect); |
| - // AppList overrides. |
| - virtual void Show() OVERRIDE; |
| - virtual void Hide() OVERRIDE; |
| - virtual void MoveNearCursor() OVERRIDE; |
| - virtual bool IsVisible() OVERRIDE; |
| - virtual void Prerender() OVERRIDE; |
| - virtual gfx::NativeWindow GetWindow() OVERRIDE; |
| - virtual void SetProfile(Profile* profile) OVERRIDE; |
| - |
| - private: |
| - // Weak pointer. The view manages its own lifetime. |
| - app_list::AppListView* view_; |
| - ActivationTrackerWin activation_tracker_; |
| - bool window_icon_updated_; |
| - |
| - DISALLOW_COPY_AND_ASSIGN(AppListWin); |
| + static void MoveNearCursor(app_list::AppListView* view); |
| }; |
| #endif // CHROME_BROWSER_UI_VIEWS_APP_LIST_WIN_APP_LIST_WIN_H_ |