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

Unified Diff: chrome/browser/ui/views/aura/chrome_shell_delegate.cc

Issue 8747021: [Aura] Polish app list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/views/aura/chrome_shell_delegate.cc
diff --git a/chrome/browser/ui/views/aura/chrome_shell_delegate.cc b/chrome/browser/ui/views/aura/chrome_shell_delegate.cc
index 90901a3c73cc935990535bee90ac3441d5b79ee4..abad67e9ab49c0f560078eb27520f26e6371ddb8 100644
--- a/chrome/browser/ui/views/aura/chrome_shell_delegate.cc
+++ b/chrome/browser/ui/views/aura/chrome_shell_delegate.cc
@@ -57,9 +57,10 @@ views::Widget* ChromeShellDelegate::CreateStatusArea() {
return status_area_widget;
}
-void ChromeShellDelegate::RequestAppListWidget(
+void ChromeShellDelegate::RequestAppListWidget(const gfx::Rect& bounds,
sky 2011/11/30 21:50:21 nit: wrap to next line.
xiyuan 2011/11/30 22:26:34 Done.
const SetWidgetCallback& callback) {
- new AppListWindow(callback); // AppListWindow deletes itself when closed.
+ // AppListWindow deletes itself when closed.
+ new AppListWindow(bounds, callback);
}
void ChromeShellDelegate::LauncherItemClicked(

Powered by Google App Engine
This is Rietveld 408576698