| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_DISPLAY_DISPLAY_UTIL_H_ | 5 #ifndef ASH_DISPLAY_DISPLAY_UTIL_H_ |
| 6 #define ASH_DISPLAY_DISPLAY_UTIL_H_ | 6 #define ASH_DISPLAY_DISPLAY_UTIL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 | 12 |
| 13 namespace aura { | 13 namespace aura { |
| 14 class Window; | 14 class Window; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace display { | 17 namespace display { |
| 18 class DisplayManager; | 18 class DisplayManager; |
| 19 class ManagedDisplayInfo; | |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace gfx { | 21 namespace gfx { |
| 23 class Point; | 22 class Point; |
| 24 class Rect; | 23 class Rect; |
| 25 } | 24 } |
| 26 | 25 |
| 27 namespace ash { | 26 namespace ash { |
| 28 class AshWindowTreeHost; | 27 class AshWindowTreeHost; |
| 29 class MouseWarpController; | 28 class MouseWarpController; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 51 #if defined(OS_CHROMEOS) | 50 #if defined(OS_CHROMEOS) |
| 52 // Shows the notification message for display related issues. | 51 // Shows the notification message for display related issues. |
| 53 void ShowDisplayErrorNotification(int message_id); | 52 void ShowDisplayErrorNotification(int message_id); |
| 54 #endif | 53 #endif |
| 55 | 54 |
| 56 ASH_EXPORT base::string16 GetDisplayErrorNotificationMessageForTest(); | 55 ASH_EXPORT base::string16 GetDisplayErrorNotificationMessageForTest(); |
| 57 | 56 |
| 58 } // namespace ash | 57 } // namespace ash |
| 59 | 58 |
| 60 #endif // ASH_DISPLAY_DISPLAY_UTIL_H_ | 59 #endif // ASH_DISPLAY_DISPLAY_UTIL_H_ |
| OLD | NEW |