OLD | NEW |
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 #ifndef ASH_SCREEN_ASH_H_ | 5 #ifndef ASH_SCREEN_ASH_H_ |
6 #define ASH_SCREEN_ASH_H_ | 6 #define ASH_SCREEN_ASH_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "ash/ash_export.h" | 9 #include "ash/ash_export.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 // auto-hiding the shelf. | 25 // auto-hiding the shelf. |
26 static gfx::Rect GetMaximizedWindowBounds(aura::Window* window); | 26 static gfx::Rect GetMaximizedWindowBounds(aura::Window* window); |
27 | 27 |
28 // Returns work area when a maximized window is not present. | 28 // Returns work area when a maximized window is not present. |
29 static gfx::Rect GetUnmaximizedWorkAreaBounds(aura::Window* window); | 29 static gfx::Rect GetUnmaximizedWorkAreaBounds(aura::Window* window); |
30 | 30 |
31 protected: | 31 protected: |
32 virtual gfx::Point GetCursorScreenPoint() OVERRIDE; | 32 virtual gfx::Point GetCursorScreenPoint() OVERRIDE; |
33 virtual gfx::NativeWindow GetWindowAtCursorScreenPoint() OVERRIDE; | 33 virtual gfx::NativeWindow GetWindowAtCursorScreenPoint() OVERRIDE; |
34 | 34 |
35 virtual int GetNumMonitors() OVERRIDE; | 35 virtual int GetNumDisplays() OVERRIDE; |
36 virtual gfx::Display GetMonitorNearestWindow( | 36 virtual gfx::Display GetDisplayNearestWindow( |
37 gfx::NativeView view) const OVERRIDE; | 37 gfx::NativeView view) const OVERRIDE; |
38 virtual gfx::Display GetMonitorNearestPoint( | 38 virtual gfx::Display GetDisplayNearestPoint( |
39 const gfx::Point& point) const OVERRIDE; | 39 const gfx::Point& point) const OVERRIDE; |
40 virtual gfx::Display GetPrimaryMonitor() const OVERRIDE; | 40 virtual gfx::Display GetPrimaryDisplay() const OVERRIDE; |
41 | 41 |
42 private: | 42 private: |
43 DISALLOW_COPY_AND_ASSIGN(ScreenAsh); | 43 DISALLOW_COPY_AND_ASSIGN(ScreenAsh); |
44 }; | 44 }; |
45 | 45 |
46 } // namespace ash | 46 } // namespace ash |
47 | 47 |
48 #endif // ASH_SCREEN_ASH_H_ | 48 #endif // ASH_SCREEN_ASH_H_ |
OLD | NEW |