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

Side by Side Diff: services/ui/public/cpp/window_compositor_frame_sink.cc

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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/public/cpp/gpu/gpu.cc ('k') | services/ui/surfaces/display_compositor.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 #include "services/ui/public/cpp/window_compositor_frame_sink.h" 5 #include "services/ui/public/cpp/window_compositor_frame_sink.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h"
8 #include "cc/output/compositor_frame.h" 9 #include "cc/output/compositor_frame.h"
9 #include "cc/output/compositor_frame_sink_client.h" 10 #include "cc/output/compositor_frame_sink_client.h"
10 #include "gpu/ipc/client/gpu_channel_host.h" 11 #include "gpu/ipc/client/gpu_channel_host.h"
11 12
12 namespace ui { 13 namespace ui {
13 14
14 // static 15 // static
15 std::unique_ptr<WindowCompositorFrameSink> WindowCompositorFrameSink::Create( 16 std::unique_ptr<WindowCompositorFrameSink> WindowCompositorFrameSink::Create(
16 scoped_refptr<cc::ContextProvider> context_provider, 17 scoped_refptr<cc::ContextProvider> context_provider,
17 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, 18 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 WindowCompositorFrameSinkBinding::~WindowCompositorFrameSinkBinding() {} 125 WindowCompositorFrameSinkBinding::~WindowCompositorFrameSinkBinding() {}
125 126
126 WindowCompositorFrameSinkBinding::WindowCompositorFrameSinkBinding( 127 WindowCompositorFrameSinkBinding::WindowCompositorFrameSinkBinding(
127 cc::mojom::MojoCompositorFrameSinkRequest compositor_frame_sink_request, 128 cc::mojom::MojoCompositorFrameSinkRequest compositor_frame_sink_request,
128 mojo::InterfacePtrInfo<cc::mojom::MojoCompositorFrameSinkClient> 129 mojo::InterfacePtrInfo<cc::mojom::MojoCompositorFrameSinkClient>
129 compositor_frame_sink_client) 130 compositor_frame_sink_client)
130 : compositor_frame_sink_request_(std::move(compositor_frame_sink_request)), 131 : compositor_frame_sink_request_(std::move(compositor_frame_sink_request)),
131 compositor_frame_sink_client_(std::move(compositor_frame_sink_client)) {} 132 compositor_frame_sink_client_(std::move(compositor_frame_sink_client)) {}
132 133
133 } // namespace ui 134 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/public/cpp/gpu/gpu.cc ('k') | services/ui/surfaces/display_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698