Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: chrome/browser/ui/webui/aura/app_list_ui.h

Issue 8747021: [Aura] Polish app list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: set tile-page-scrollbar color Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/aura/chrome_shell_delegate.cc ('k') | chrome/browser/ui/webui/aura/app_list_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « chrome/browser/ui/views/aura/chrome_shell_delegate.cc ('k') | chrome/browser/ui/webui/aura/app_list_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698