| 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 "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 10 #include "ash/ash_export.h" | |
| 11 #include "ui/gfx/insets.h" | 11 #include "ui/gfx/insets.h" |
| 12 #include "ui/gfx/rect.h" | 12 #include "ui/gfx/rect.h" |
| 13 #include "ui/gfx/screen_impl.h" | 13 #include "ui/gfx/screen_impl.h" |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 | 16 |
| 17 // Aura implementation of gfx::Screen. Implemented here to avoid circular | 17 // Aura implementation of gfx::Screen. Implemented here to avoid circular |
| 18 // dependencies. | 18 // dependencies. |
| 19 class ASH_EXPORT ScreenAsh : public gfx::ScreenImpl { | 19 class ASH_EXPORT ScreenAsh : public gfx::ScreenImpl { |
| 20 public: | 20 public: |
| 21 ScreenAsh(); | 21 ScreenAsh(); |
| 22 virtual ~ScreenAsh(); | 22 virtual ~ScreenAsh(); |
| 23 | 23 |
| 24 // Returns the bounds for maximized windows. Maximized windows trigger | 24 // Returns the bounds for maximized windows. Maximized windows trigger |
| 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 GetNumMonitors() OVERRIDE; |
| 36 virtual gfx::Monitor GetMonitorNearestWindow( | 36 virtual gfx::Display GetMonitorNearestWindow( |
| 37 gfx::NativeView view) const OVERRIDE; | 37 gfx::NativeView view) const OVERRIDE; |
| 38 virtual gfx::Monitor GetMonitorNearestPoint( | 38 virtual gfx::Display GetMonitorNearestPoint( |
| 39 const gfx::Point& point) const OVERRIDE; | 39 const gfx::Point& point) const OVERRIDE; |
| 40 virtual gfx::Monitor GetPrimaryMonitor() const OVERRIDE; | 40 virtual gfx::Display GetPrimaryMonitor() 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 |