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

Side by Side Diff: content/renderer/mus/render_widget_mus_connection.h

Issue 2257693002: services/ui: Use a gpu::GpuChannelHost when creating ui::OutputSurface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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 | « no previous file | content/renderer/mus/render_widget_mus_connection.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 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 CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ 5 #ifndef CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_
6 #define CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ 6 #define CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/threading/thread_checker.h" 9 #include "base/threading/thread_checker.h"
10 #include "cc/output/output_surface.h" 10 #include "cc/output/output_surface.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "content/renderer/input/render_widget_input_handler_delegate.h" 12 #include "content/renderer/input/render_widget_input_handler_delegate.h"
13 #include "content/renderer/mus/compositor_mus_connection.h" 13 #include "content/renderer/mus/compositor_mus_connection.h"
14 #include "services/ui/public/cpp/window_surface.h" 14 #include "services/ui/public/cpp/window_surface.h"
15 15
16 namespace ui { 16 namespace gpu {
17 class GpuService; 17 class GpuChannelHost;
18 } 18 }
19 19
20 namespace content { 20 namespace content {
21 21
22 class InputHandlerManager; 22 class InputHandlerManager;
23 23
24 // Use on main thread. 24 // Use on main thread.
25 class CONTENT_EXPORT RenderWidgetMusConnection 25 class CONTENT_EXPORT RenderWidgetMusConnection
26 : public RenderWidgetInputHandlerDelegate { 26 : public RenderWidgetInputHandlerDelegate {
27 public: 27 public:
28 // Bind to a WindowTreeClient request. 28 // Bind to a WindowTreeClient request.
29 void Bind(mojo::InterfaceRequest<ui::mojom::WindowTreeClient> request); 29 void Bind(mojo::InterfaceRequest<ui::mojom::WindowTreeClient> request);
30 30
31 // Create a cc output surface. 31 // Create a cc output surface.
32 std::unique_ptr<cc::OutputSurface> CreateOutputSurface(ui::GpuService* gpu); 32 std::unique_ptr<cc::OutputSurface> CreateOutputSurface(
33 scoped_refptr<gpu::GpuChannelHost> gpu_channel_host);
33 34
34 static RenderWidgetMusConnection* Get(int routing_id); 35 static RenderWidgetMusConnection* Get(int routing_id);
35 36
36 // Get the connection from a routing_id, if the connection doesn't exist, 37 // Get the connection from a routing_id, if the connection doesn't exist,
37 // a new connection will be created. 38 // a new connection will be created.
38 static RenderWidgetMusConnection* GetOrCreate(int routing_id); 39 static RenderWidgetMusConnection* GetOrCreate(int routing_id);
39 40
40 private: 41 private:
41 friend class CompositorMusConnection; 42 friend class CompositorMusConnection;
42 friend class CompositorMusConnectionTest; 43 friend class CompositorMusConnectionTest;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 76
76 // Used to verify single threaded access. 77 // Used to verify single threaded access.
77 base::ThreadChecker thread_checker_; 78 base::ThreadChecker thread_checker_;
78 79
79 DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection); 80 DISALLOW_COPY_AND_ASSIGN(RenderWidgetMusConnection);
80 }; 81 };
81 82
82 } // namespace content 83 } // namespace content
83 84
84 #endif // CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_ 85 #endif // CONTENT_RENDERER_MUS_RENDER_WIDGET_MUS_CONNECTION_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/mus/render_widget_mus_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698