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

Unified Diff: chrome/browser/ui/ash/app_list/app_list_service_ash.cc

Issue 276833002: Make the App Info Dialog appear modal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed the AppList overlay to be a Background Created 6 years, 7 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_service_ash.cc
diff --git a/chrome/browser/ui/ash/app_list/app_list_service_ash.cc b/chrome/browser/ui/ash/app_list/app_list_service_ash.cc
index ac1dc4f52ef8537e202ac7ad40dfce5f1075c3cc..15a376da1162661458dd3f28bd8e9a8c204f4302 100644
--- a/chrome/browser/ui/ash/app_list/app_list_service_ash.cc
+++ b/chrome/browser/ui/ash/app_list/app_list_service_ash.cc
@@ -57,6 +57,12 @@ gfx::NativeWindow AppListServiceAsh::GetAppListWindow() {
return NULL;
}
+app_list::AppListView* AppListServiceAsh::GetAppListView() {
+ if (ash::Shell::HasInstance())
+ return ash::Shell::GetInstance()->GetAppListView();
+ return NULL;
+}
+
Profile* AppListServiceAsh::GetCurrentAppListProfile() {
return ChromeLauncherController::instance()->profile();
}

Powered by Google App Engine
This is Rietveld 408576698