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_SURFACE_H_ | 5 #ifndef COMPONENTS_EXO_SURFACE_H_ |
6 #define COMPONENTS_EXO_SURFACE_H_ | 6 #define COMPONENTS_EXO_SURFACE_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <memory> | 9 #include <memory> |
10 #include <set> | 10 #include <set> |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "ui/gfx/geometry/rect.h" | 25 #include "ui/gfx/geometry/rect.h" |
26 | 26 |
27 namespace base { | 27 namespace base { |
28 namespace trace_event { | 28 namespace trace_event { |
29 class TracedValue; | 29 class TracedValue; |
30 } | 30 } |
31 } | 31 } |
32 | 32 |
33 namespace cc { | 33 namespace cc { |
34 class SurfaceFactory; | 34 class SurfaceFactory; |
35 enum class SurfaceDrawStatus; | |
36 } | 35 } |
37 | 36 |
38 namespace gfx { | 37 namespace gfx { |
39 class Path; | 38 class Path; |
40 } | 39 } |
41 | 40 |
42 namespace exo { | 41 namespace exo { |
43 class Buffer; | 42 class Buffer; |
44 class Pointer; | 43 class Pointer; |
45 class SurfaceDelegate; | 44 class SurfaceDelegate; |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 | 399 |
401 // Surface observer list. Surface does not own the observers. | 400 // Surface observer list. Surface does not own the observers. |
402 base::ObserverList<SurfaceObserver, true> observers_; | 401 base::ObserverList<SurfaceObserver, true> observers_; |
403 | 402 |
404 DISALLOW_COPY_AND_ASSIGN(Surface); | 403 DISALLOW_COPY_AND_ASSIGN(Surface); |
405 }; | 404 }; |
406 | 405 |
407 } // namespace exo | 406 } // namespace exo |
408 | 407 |
409 #endif // COMPONENTS_EXO_SURFACE_H_ | 408 #endif // COMPONENTS_EXO_SURFACE_H_ |
OLD | NEW |