diff options
author | xiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-12 03:06:00 +0000 |
---|---|---|
committer | xiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-12 03:06:00 +0000 |
commit | 8a201eb4b559aa82e6f3c0363817d1ba03ecabee (patch) | |
tree | 23fc1c5e9e2e4c2af4ecc7981ed822155de4f792 /ash/shell_delegate.h | |
parent | 80fe82fc9788d5ca591f3df08ff43c9d608ec40b (diff) | |
download | chromium_src-8a201eb4b559aa82e6f3c0363817d1ba03ecabee.zip chromium_src-8a201eb4b559aa82e6f3c0363817d1ba03ecabee.tar.gz chromium_src-8a201eb4b559aa82e6f3c0363817d1ba03ecabee.tar.bz2 |
[Aura] Remove webui applist and enable views applist.
BUG=105913,105620
TEST=Verify fix for issue 105913,105620.
Review URL: http://codereview.chromium.org/9185014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117375 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell_delegate.h')
-rw-r--r-- | ash/shell_delegate.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h index 21e181d..0bb1ce6 100644 --- a/ash/shell_delegate.h +++ b/ash/shell_delegate.h @@ -32,9 +32,6 @@ struct LauncherItem; // Delegate of the Shell. class ASH_EXPORT ShellDelegate { public: - // Callback to pass back a widget used by RequestAppListWidget. - typedef base::Callback<void(views::Widget*)> SetWidgetCallback; - // The Shell owns the delegate. virtual ~ShellDelegate() {} @@ -45,14 +42,6 @@ class ASH_EXPORT ShellDelegate { // Invoked to create a new status area. Can return NULL. virtual views::Widget* CreateStatusArea() = 0; - // 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; |