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

Side by Side Diff: content/gpu/gpu_child_thread.cc

Issue 1799713002: gpu_host_messages.h => content/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed an unnecessary include Created 4 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/gpu/gpu_child_thread.h" 5 #include "content/gpu/gpu_child_thread.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/lazy_instance.h" 11 #include "base/lazy_instance.h"
12 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
13 #include "base/threading/worker_pool.h" 13 #include "base/threading/worker_pool.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "content/child/child_process.h" 15 #include "content/child/child_process.h"
16 #include "content/child/thread_safe_sender.h" 16 #include "content/child/thread_safe_sender.h"
17 #include "content/common/gpu/establish_channel_params.h" 17 #include "content/common/gpu/establish_channel_params.h"
18 #include "content/common/gpu/gpu_host_messages.h"
19 #include "content/common/gpu/gpu_memory_buffer_factory.h" 18 #include "content/common/gpu/gpu_memory_buffer_factory.h"
20 #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.h" 19 #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.h"
21 #include "content/common/gpu/media/gpu_video_decode_accelerator.h" 20 #include "content/common/gpu/media/gpu_video_decode_accelerator.h"
22 #include "content/common/gpu/media/gpu_video_encode_accelerator.h" 21 #include "content/common/gpu/media/gpu_video_encode_accelerator.h"
23 #include "content/common/gpu/media/media_service.h" 22 #include "content/common/gpu/media/media_service.h"
23 #include "content/gpu/gpu_host_messages.h"
24 #include "content/gpu/gpu_process_control_impl.h" 24 #include "content/gpu/gpu_process_control_impl.h"
25 #include "content/gpu/gpu_watchdog_thread.h" 25 #include "content/gpu/gpu_watchdog_thread.h"
26 #include "content/public/common/content_client.h" 26 #include "content/public/common/content_client.h"
27 #include "content/public/common/content_switches.h" 27 #include "content/public/common/content_switches.h"
28 #include "content/public/gpu/content_gpu_client.h" 28 #include "content/public/gpu/content_gpu_client.h"
29 #include "gpu/command_buffer/service/gpu_switches.h" 29 #include "gpu/command_buffer/service/gpu_switches.h"
30 #include "gpu/config/gpu_info_collector.h" 30 #include "gpu/config/gpu_info_collector.h"
31 #include "gpu/config/gpu_switches.h" 31 #include "gpu/config/gpu_switches.h"
32 #include "gpu/config/gpu_util.h" 32 #include "gpu/config/gpu_util.h"
33 #include "gpu/ipc/common/memory_stats.h" 33 #include "gpu/ipc/common/memory_stats.h"
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 561
562 void GpuChildThread::BindProcessControlRequest( 562 void GpuChildThread::BindProcessControlRequest(
563 mojo::InterfaceRequest<ProcessControl> request) { 563 mojo::InterfaceRequest<ProcessControl> request) {
564 DVLOG(1) << "GPU: Binding ProcessControl request"; 564 DVLOG(1) << "GPU: Binding ProcessControl request";
565 DCHECK(process_control_); 565 DCHECK(process_control_);
566 process_control_bindings_.AddBinding(process_control_.get(), 566 process_control_bindings_.AddBinding(process_control_.get(),
567 std::move(request)); 567 std::move(request));
568 } 568 }
569 569
570 } // namespace content 570 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698