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

Unified Diff: ui/aura_shell/app_list/app_list.cc

Issue 8890049: [Aura] Implement views-based applist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased and address comments in #2 Created 9 years 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: ui/aura_shell/app_list/app_list.cc
diff --git a/ui/aura_shell/app_list.cc b/ui/aura_shell/app_list/app_list.cc
similarity index 98%
rename from ui/aura_shell/app_list.cc
rename to ui/aura_shell/app_list/app_list.cc
index 6e21601512b226ecb9572ecef4eeaa27c7ed4990..6e79bcbf7d6342e463d7669d6deae2a6d2545d60 100644
--- a/ui/aura_shell/app_list.cc
+++ b/ui/aura_shell/app_list/app_list.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ui/aura_shell/app_list.h"
+#include "ui/aura_shell/app_list/app_list.h"
#include "base/bind.h"
#include "ui/aura/event.h"
@@ -25,7 +25,7 @@ gfx::Rect GetPreferredBounds(bool show) {
gfx::Point cursor = gfx::Screen::GetCursorScreenPoint();
gfx::Rect work_area = gfx::Screen::GetMonitorWorkAreaNearestPoint(cursor);
gfx::Rect widget_bounds(work_area);
- widget_bounds.Inset(150, 100);
+ widget_bounds.Inset(100, 100);
if (!show)
widget_bounds.Offset(0, kMoveUpAnimationOffset);

Powered by Google App Engine
This is Rietveld 408576698