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

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

Issue 2696233002: Mojo C++ bindings: remove some usage of AssociatedGroup from user code. (Closed)
Patch Set: . Created 3 years, 10 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/server_window_delegate.h ('k') | services/ui/ws/test_server_window_delegate.cc » ('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_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 "services/ui/ws/server_window_delegate.h" 9 #include "services/ui/ws/server_window_delegate.h"
10 10
11 namespace cc { 11 namespace cc {
12 namespace mojom { 12 namespace mojom {
13 class DisplayCompositor; 13 class DisplayCompositor;
14 } 14 }
15 } 15 }
16 16
17 namespace ui { 17 namespace ui {
18 namespace ws { 18 namespace ws {
19 19
20 class TestServerWindowDelegate : public ServerWindowDelegate { 20 class TestServerWindowDelegate : public ServerWindowDelegate {
21 public: 21 public:
22 TestServerWindowDelegate(); 22 TestServerWindowDelegate();
23 ~TestServerWindowDelegate() override; 23 ~TestServerWindowDelegate() override;
24 24
25 void set_root_window(ServerWindow* window) { root_window_ = window; } 25 void set_root_window(ServerWindow* window) { root_window_ = window; }
26 26
27 private: 27 private:
28 // ServerWindowDelegate: 28 // ServerWindowDelegate:
29 cc::mojom::DisplayCompositor* GetDisplayCompositor() override; 29 cc::mojom::DisplayCompositor* GetDisplayCompositor() override;
30 mojo::AssociatedGroup* GetDisplayCompositorAssociatedGroup() override;
31 ServerWindow* GetRootWindow(const ServerWindow* window) override; 30 ServerWindow* GetRootWindow(const ServerWindow* window) override;
32 31
33 ServerWindow* root_window_ = nullptr; 32 ServerWindow* root_window_ = nullptr;
34 33
35 DISALLOW_COPY_AND_ASSIGN(TestServerWindowDelegate); 34 DISALLOW_COPY_AND_ASSIGN(TestServerWindowDelegate);
36 }; 35 };
37 36
38 } // namespace ws 37 } // namespace ws
39 } // namespace ui 38 } // namespace ui
40 39
41 #endif // SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_ 40 #endif // SERVICES_UI_WS_TEST_SERVER_WINDOW_DELEGATE_H_
OLDNEW
« no previous file with comments | « services/ui/ws/server_window_delegate.h ('k') | services/ui/ws/test_server_window_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698