diff options
author | pastarmovj@chromium.org <pastarmovj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 13:05:02 +0000 |
---|---|---|
committer | pastarmovj@chromium.org <pastarmovj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 13:05:02 +0000 |
commit | d6be33ef12e0768fb8c4e7ad779854f98d913840 (patch) | |
tree | c190f28040ef41caa99201d259284165d5a6bc61 /ui/aura_shell/shell_delegate.h | |
parent | 10a1d30646c2b475fa308b8d5f0e496d6b1283cf (diff) | |
download | chromium_src-d6be33ef12e0768fb8c4e7ad779854f98d913840.zip chromium_src-d6be33ef12e0768fb8c4e7ad779854f98d913840.tar.gz chromium_src-d6be33ef12e0768fb8c4e7ad779854f98d913840.tar.bz2 |
Revert 115515 - [Aura] Implement views-based applist.
Implement a views-based applist behind "aura-views-applist" flag.
BUG=98308,105913
TEST=Views-based app list should have no lag.
Review URL: http://codereview.chromium.org/8890049
TBR=xiyuan@chromium.org
Review URL: http://codereview.chromium.org/9023004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura_shell/shell_delegate.h')
-rw-r--r-- | ui/aura_shell/shell_delegate.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ui/aura_shell/shell_delegate.h b/ui/aura_shell/shell_delegate.h index 7912919..982ef8d 100644 --- a/ui/aura_shell/shell_delegate.h +++ b/ui/aura_shell/shell_delegate.h @@ -19,8 +19,6 @@ class Widget; namespace aura_shell { -class AppListModel; -class AppListViewDelegate; struct LauncherItem; // Delegate of the Shell. @@ -41,19 +39,10 @@ class AURA_SHELL_EXPORT ShellDelegate { // Invoked to create app list widget. The Delegate calls the callback // when the widget is ready to show. - // Deprecated. - // TODO(xiyuan): Clean this up when switching to views app list. virtual void RequestAppListWidget( const gfx::Rect& bounds, const SetWidgetCallback& callback) = 0; - // Invoked to ask the delegate to populate the |model|. - virtual void BuildAppListModel(AppListModel* model) = 0; - - // Invoked to create an AppListViewDelegate. Shell takes the ownership of - // the created delegate. - virtual AppListViewDelegate* CreateAppListViewDelegate() = 0; - // Invoked when the user clicks on a window entry in the launcher. virtual void LauncherItemClicked(const LauncherItem& item) = 0; |