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

Unified Diff: chrome/browser/ui/ash/app_list/app_list_controller_ash.h

Issue 11094019: Auto hide app list on Windows when it loses focus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Feedback Created 8 years, 2 months 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/ash/app_list/app_list_controller_ash.h
diff --git a/chrome/browser/ui/ash/app_list/app_list_controller_ash.h b/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
index 6b2b58e37615268f1e08b78de20916901a77e747..85f308ffd73f95edfafc1c73c6cc0f28724cb79d 100644
--- a/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
+++ b/chrome/browser/ui/ash/app_list/app_list_controller_ash.h
@@ -9,27 +9,24 @@
#include "base/compiler_specific.h"
#include "chrome/browser/ui/app_list/app_list_controller.h"
-class AppListControllerAsh : public AppListController {
+class AppListControllerDelegateAsh : public AppListControllerDelegate {
public:
- AppListControllerAsh();
- virtual ~AppListControllerAsh();
+ AppListControllerDelegateAsh();
+ virtual ~AppListControllerDelegateAsh();
private:
- // AppListController overrides:
+ // AppListControllerDelegate overrides:
virtual void CloseView() OVERRIDE;
virtual bool IsAppPinned(const std::string& extension_id) OVERRIDE;
virtual void PinApp(const std::string& extension_id) OVERRIDE;
virtual void UnpinApp(const std::string& extension_id) OVERRIDE;
virtual bool CanPin() OVERRIDE;
virtual bool CanShowCreateShortcutsDialog() OVERRIDE;
- virtual void ShowCreateShortcutsDialog(
- Profile* profile,
- const std::string& extension_id) OVERRIDE;
virtual void ActivateApp(Profile* profile,
const std::string& extension_id,
int event_flags) OVERRIDE;
- DISALLOW_COPY_AND_ASSIGN(AppListControllerAsh);
+ DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAsh);
};
#endif // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_

Powered by Google App Engine
This is Rietveld 408576698