| 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 SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ | 5 #ifndef SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ |
| 6 #define SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ | 6 #define SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "cc/surfaces/surface_id.h" | |
| 10 #include "services/ui/ws/server_window_delegate.h" | 9 #include "services/ui/ws/server_window_delegate.h" |
| 11 | 10 |
| 12 namespace cc { | 11 namespace cc { |
| 13 namespace mojom { | 12 namespace mojom { |
| 14 class DisplayCompositor; | 13 class DisplayCompositor; |
| 15 } | 14 } |
| 16 } | 15 } |
| 17 | 16 |
| 18 namespace ui { | 17 namespace ui { |
| 19 namespace ws { | 18 namespace ws { |
| 20 | 19 |
| 21 class TestServerWindowDelegate : public ServerWindowDelegate { | 20 class TestServerWindowDelegate : public ServerWindowDelegate { |
| 22 public: | 21 public: |
| 23 TestServerWindowDelegate(); | 22 TestServerWindowDelegate(); |
| 24 ~TestServerWindowDelegate() override; | 23 ~TestServerWindowDelegate() override; |
| 25 | 24 |
| 26 void set_root_window(ServerWindow* window) { root_window_ = window; } | 25 void set_root_window(ServerWindow* window) { root_window_ = window; } |
| 27 | 26 |
| 28 private: | 27 private: |
| 29 // ServerWindowDelegate: | 28 // ServerWindowDelegate: |
| 30 cc::mojom::DisplayCompositor* GetDisplayCompositor() override; | 29 cc::mojom::DisplayCompositor* GetDisplayCompositor() override; |
| 31 const cc::SurfaceId& GetRootSurfaceId() const override; | |
| 32 ServerWindow* GetRootWindow(const ServerWindow* window) override; | 30 ServerWindow* GetRootWindow(const ServerWindow* window) override; |
| 33 | 31 |
| 34 cc::SurfaceId root_surface_id_; | |
| 35 ServerWindow* root_window_ = nullptr; | 32 ServerWindow* root_window_ = nullptr; |
| 36 | 33 |
| 37 DISALLOW_COPY_AND_ASSIGN(TestServerWindowDelegate); | 34 DISALLOW_COPY_AND_ASSIGN(TestServerWindowDelegate); |
| 38 }; | 35 }; |
| 39 | 36 |
| 40 } // namespace ws | 37 } // namespace ws |
| 41 } // namespace ui | 38 } // namespace ui |
| 42 | 39 |
| 43 #endif // SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ | 40 #endif // SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ |
| OLD | NEW |