| Index: chrome/browser/ui/webui/aura/app_list_ui.h
|
| diff --git a/chrome/browser/ui/webui/aura/app_list_ui.h b/chrome/browser/ui/webui/aura/app_list_ui.h
|
| index 3eaecaa279f6efccaa89f1a01dfb5554feefe4a7..14ab584c06deb2f9ec95c9069f040d919f7f6aaf 100644
|
| --- a/chrome/browser/ui/webui/aura/app_list_ui.h
|
| +++ b/chrome/browser/ui/webui/aura/app_list_ui.h
|
| @@ -8,11 +8,23 @@
|
|
|
| #include "chrome/browser/ui/webui/chrome_web_ui.h"
|
|
|
| +class AppListUIDelegate;
|
| +
|
| class AppListUI : public ChromeWebUI {
|
| public:
|
| explicit AppListUI(TabContents* contents);
|
|
|
| + AppListUIDelegate* delegate() const {
|
| + return delegate_;
|
| + }
|
| +
|
| + void set_delegate(AppListUIDelegate* delegate) {
|
| + delegate_ = delegate;
|
| + }
|
| +
|
| private:
|
| + AppListUIDelegate* delegate_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(AppListUI);
|
| };
|
|
|
|
|