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

Side by Side Diff: ash/wm/window_animations.cc

Issue 1608053002: Remove now-unnecessary wrappers around gfx::Screen::GetScreen() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@metro-mode-5
Patch Set: cros Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « ash/wm/toplevel_window_event_handler_unittest.cc ('k') | ash/wm/window_manager_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/wm/window_animations.h" 5 #include "ash/wm/window_animations.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <algorithm> 8 #include <algorithm>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
11 11
12 #include "ash/screen_util.h" 12 #include "ash/screen_util.h"
13 #include "ash/shelf/shelf.h" 13 #include "ash/shelf/shelf.h"
14 #include "ash/shelf/shelf_layout_manager.h" 14 #include "ash/shelf/shelf_layout_manager.h"
15 #include "ash/shelf/shelf_widget.h" 15 #include "ash/shelf/shelf_widget.h"
16 #include "ash/shell.h"
17 #include "ash/wm/window_util.h" 16 #include "ash/wm/window_util.h"
18 #include "ash/wm/workspace_controller.h" 17 #include "ash/wm/workspace_controller.h"
19 #include "base/command_line.h" 18 #include "base/command_line.h"
20 #include "base/compiler_specific.h" 19 #include "base/compiler_specific.h"
21 #include "base/logging.h" 20 #include "base/logging.h"
22 #include "base/message_loop/message_loop.h" 21 #include "base/message_loop/message_loop.h"
23 #include "base/stl_util.h" 22 #include "base/stl_util.h"
24 #include "base/time/time.h" 23 #include "base/time/time.h"
25 #include "ui/aura/client/aura_constants.h" 24 #include "ui/aura/client/aura_constants.h"
26 #include "ui/aura/window.h" 25 #include "ui/aura/window.h"
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 break; 485 break;
487 } 486 }
488 return item_rect; 487 return item_rect;
489 } 488 }
490 } 489 }
491 490
492 // Coming here, there is no visible icon of that shelf item and we zoom back 491 // Coming here, there is no visible icon of that shelf item and we zoom back
493 // to the location of the application launcher (which is fixed as first item 492 // to the location of the application launcher (which is fixed as first item
494 // of the shelf). 493 // of the shelf).
495 gfx::Rect work_area = 494 gfx::Rect work_area =
496 Shell::GetScreen()->GetDisplayNearestWindow(window).work_area(); 495 gfx::Screen::GetScreen()->GetDisplayNearestWindow(window).work_area();
497 int ltr_adjusted_x = base::i18n::IsRTL() ? work_area.right() : work_area.x(); 496 int ltr_adjusted_x = base::i18n::IsRTL() ? work_area.right() : work_area.x();
498 switch (layout_manager->GetAlignment()) { 497 switch (layout_manager->GetAlignment()) {
499 case SHELF_ALIGNMENT_BOTTOM: 498 case SHELF_ALIGNMENT_BOTTOM:
500 return gfx::Rect(ltr_adjusted_x, work_area.bottom(), 0, 0); 499 return gfx::Rect(ltr_adjusted_x, work_area.bottom(), 0, 0);
501 case SHELF_ALIGNMENT_TOP: 500 case SHELF_ALIGNMENT_TOP:
502 return gfx::Rect(ltr_adjusted_x, work_area.y(), 0, 0); 501 return gfx::Rect(ltr_adjusted_x, work_area.y(), 0, 0);
503 case SHELF_ALIGNMENT_LEFT: 502 case SHELF_ALIGNMENT_LEFT:
504 return gfx::Rect(work_area.x(), work_area.y(), 0, 0); 503 return gfx::Rect(work_area.x(), work_area.y(), 0, 0);
505 case SHELF_ALIGNMENT_RIGHT: 504 case SHELF_ALIGNMENT_RIGHT:
506 return gfx::Rect(work_area.right(), work_area.y(), 0, 0); 505 return gfx::Rect(work_area.right(), work_area.y(), 0, 0);
507 } 506 }
508 NOTREACHED(); 507 NOTREACHED();
509 return gfx::Rect(); 508 return gfx::Rect();
510 } 509 }
511 510
512 } // namespace ash 511 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/toplevel_window_event_handler_unittest.cc ('k') | ash/wm/window_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698