Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(602)

Side by Side Diff: components/exo/surface.h

Issue 2484863005: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Fix another conflict Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 class SurfaceIdAllocator;
35 } 36 }
36 37
37 namespace gfx { 38 namespace gfx {
38 class Path; 39 class Path;
39 } 40 }
40 41
41 namespace exo { 42 namespace exo {
42 class Buffer; 43 class Buffer;
43 class Pointer; 44 class Pointer;
44 class SurfaceDelegate; 45 class SurfaceDelegate;
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 422
422 // Surface observer list. Surface does not own the observers. 423 // Surface observer list. Surface does not own the observers.
423 base::ObserverList<SurfaceObserver, true> observers_; 424 base::ObserverList<SurfaceObserver, true> observers_;
424 425
425 DISALLOW_COPY_AND_ASSIGN(Surface); 426 DISALLOW_COPY_AND_ASSIGN(Surface);
426 }; 427 };
427 428
428 } // namespace exo 429 } // namespace exo
429 430
430 #endif // COMPONENTS_EXO_SURFACE_H_ 431 #endif // COMPONENTS_EXO_SURFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698