Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_EXO_DISPLAY_H_ | 5 #ifndef COMPONENTS_EXO_DISPLAY_H_ |
| 6 #define COMPONENTS_EXO_DISPLAY_H_ | 6 #define COMPONENTS_EXO_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 class Point; | 24 class Point; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace exo { | 27 namespace exo { |
| 28 class NotificationSurface; | 28 class NotificationSurface; |
| 29 class NotificationSurfaceManager; | 29 class NotificationSurfaceManager; |
| 30 class SharedMemory; | 30 class SharedMemory; |
| 31 class ShellSurface; | 31 class ShellSurface; |
| 32 class SubSurface; | 32 class SubSurface; |
| 33 class Surface; | 33 class Surface; |
| 34 class WMHelper; | |
|
reveman
2016/08/17 21:10:06
nit: remove if not needed
Peng
2016/08/17 21:29:58
Done.
| |
| 34 | 35 |
| 35 #if defined(USE_OZONE) | 36 #if defined(USE_OZONE) |
| 36 class Buffer; | 37 class Buffer; |
| 37 #endif | 38 #endif |
| 38 | 39 |
| 39 // The core display class. This class provides functions for creating surfaces | 40 // The core display class. This class provides functions for creating surfaces |
| 40 // and is in charge of combining the contents of multiple surfaces into one | 41 // and is in charge of combining the contents of multiple surfaces into one |
| 41 // displayable output. | 42 // displayable output. |
| 42 class Display { | 43 class Display { |
| 43 public: | 44 public: |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 89 | 90 |
| 90 private: | 91 private: |
| 91 NotificationSurfaceManager* const notification_surface_manager_; | 92 NotificationSurfaceManager* const notification_surface_manager_; |
| 92 | 93 |
| 93 DISALLOW_COPY_AND_ASSIGN(Display); | 94 DISALLOW_COPY_AND_ASSIGN(Display); |
| 94 }; | 95 }; |
| 95 | 96 |
| 96 } // namespace exo | 97 } // namespace exo |
| 97 | 98 |
| 98 #endif // COMPONENTS_EXO_DISPLAY_H_ | 99 #endif // COMPONENTS_EXO_DISPLAY_H_ |
| OLD | NEW |