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

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

Issue 8747021: [Aura] Polish app list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 9 years, 1 month 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
Index: chrome/browser/ui/webui/aura/app_list_ui_delegate.h
diff --git a/chrome/browser/ui/webui/aura/app_list_ui_delegate.h b/chrome/browser/ui/webui/aura/app_list_ui_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..a23d376da5624e4fe3c7e97b44995dc803b9484c
--- /dev/null
+++ b/chrome/browser/ui/webui/aura/app_list_ui_delegate.h
@@ -0,0 +1,18 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_WEBUI_AURA_APP_LIST_UI_DELEGATE_H_
+#define CHROME_BROWSER_UI_WEBUI_AURA_APP_LIST_UI_DELEGATE_H_
+#pragma once
+
+class AppListUIDelegate {
+ public:
+ // Close AppListUI.
+ virtual void Close() = 0;
+
+ // Invoked when apps are loaded.
+ virtual void OnAppsLoaded() = 0;
+};
+
+#endif // CHROME_BROWSER_UI_WEBUI_AURA_APP_LIST_UI_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698