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

Side by Side Diff: services/ui/ws/server_window_delegate.h

Issue 2632273003: Move ReferencedSurfaceTracker into GpuCompositorFrameSink. (Closed)
Patch Set: Fix iterator invalidation. Created 3 years, 11 months 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
« no previous file with comments | « services/ui/ws/frame_generator.cc ('k') | services/ui/ws/test_server_window_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 SERVICES_UI_WS_SERVER_WINDOW_DELEGATE_H_ 5 #ifndef SERVICES_UI_WS_SERVER_WINDOW_DELEGATE_H_
6 #define SERVICES_UI_WS_SERVER_WINDOW_DELEGATE_H_ 6 #define SERVICES_UI_WS_SERVER_WINDOW_DELEGATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "services/ui/public/interfaces/mus_constants.mojom.h" 10 #include "services/ui/public/interfaces/mus_constants.mojom.h"
(...skipping 11 matching lines...) Expand all
22 namespace ws { 22 namespace ws {
23 23
24 class ServerWindow; 24 class ServerWindow;
25 25
26 class ServerWindowDelegate { 26 class ServerWindowDelegate {
27 public: 27 public:
28 // Returns a display compositor interface pointer. There is only one 28 // Returns a display compositor interface pointer. There is only one
29 // DisplayCompositor running in the system. 29 // DisplayCompositor running in the system.
30 virtual cc::mojom::DisplayCompositor* GetDisplayCompositor() = 0; 30 virtual cc::mojom::DisplayCompositor* GetDisplayCompositor() = 0;
31 31
32 // Returns the root surface id that was received from DisplayCompositor.
33 virtual const cc::SurfaceId& GetRootSurfaceId() const = 0;
34
35 // Returns the root of the window tree to which this |window| is attached. 32 // Returns the root of the window tree to which this |window| is attached.
36 // Returns null if this window is not attached up through to a root window. 33 // Returns null if this window is not attached up through to a root window.
37 virtual ServerWindow* GetRootWindow(const ServerWindow* window) = 0; 34 virtual ServerWindow* GetRootWindow(const ServerWindow* window) = 0;
38 35
39 protected: 36 protected:
40 virtual ~ServerWindowDelegate() {} 37 virtual ~ServerWindowDelegate() {}
41 }; 38 };
42 39
43 } // namespace ws 40 } // namespace ws
44 41
45 } // namespace ui 42 } // namespace ui
46 43
47 #endif // SERVICES_UI_WS_SERVER_WINDOW_DELEGATE_H_ 44 #endif // SERVICES_UI_WS_SERVER_WINDOW_DELEGATE_H_
OLDNEW
« no previous file with comments | « services/ui/ws/frame_generator.cc ('k') | services/ui/ws/test_server_window_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698