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

Unified Diff: chrome/browser/ui/app_list/app_list_service_mac.mm

Issue 21592003: app_list: Show apps grid after installing from cws result. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/app_list/app_list_service_mac.mm
diff --git a/chrome/browser/ui/app_list/app_list_service_mac.mm b/chrome/browser/ui/app_list/app_list_service_mac.mm
index 56b9db4639e13a1d1b361286307aff7ea1c7a136..9fe7776ae1236350a11393bfce7e07ff0c15519e 100644
--- a/chrome/browser/ui/app_list/app_list_service_mac.mm
+++ b/chrome/browser/ui/app_list/app_list_service_mac.mm
@@ -118,6 +118,7 @@ class AppListControllerDelegateCocoa : public AppListControllerDelegate {
virtual void LaunchApp(Profile* profile,
const extensions::Extension* extension,
int event_flags) OVERRIDE;
+ virtual void ShowAppsGrid() OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateCocoa);
};
@@ -268,6 +269,10 @@ void AppListControllerDelegateCocoa::LaunchApp(
profile, extension, NEW_FOREGROUND_TAB));
}
+void AppListControllerDelegateCocoa::ShowAppsGrid() {
+ NOTIMPLEMENTED();
+}
+
void AppListServiceMac::CreateAppList(Profile* requested_profile) {
if (profile() == requested_profile)
return;

Powered by Google App Engine
This is Rietveld 408576698