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

Side by Side Diff: remoting/host/chromoting_host_context.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 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 "remoting/host/chromoting_host_context.h" 5 #include "remoting/host/chromoting_host_context.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "base/message_loop/message_loop.h"
9 #include "base/threading/thread_restrictions.h" 10 #include "base/threading/thread_restrictions.h"
10 #include "build/build_config.h" 11 #include "build/build_config.h"
11 #include "remoting/base/auto_thread.h" 12 #include "remoting/base/auto_thread.h"
12 #include "remoting/base/url_request_context_getter.h" 13 #include "remoting/base/url_request_context_getter.h"
13 14
14 namespace remoting { 15 namespace remoting {
15 16
16 namespace { 17 namespace {
17 18
18 void DisallowBlockingOperations() { 19 void DisallowBlockingOperations() {
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 file_auto_task_runner, 159 file_auto_task_runner,
159 ui_auto_task_runner, // input_task_runner 160 ui_auto_task_runner, // input_task_runner
160 io_auto_task_runner, // network_task_runner 161 io_auto_task_runner, // network_task_runner
161 ui_auto_task_runner, // video_capture_task_runner 162 ui_auto_task_runner, // video_capture_task_runner
162 AutoThread::Create("ChromotingEncodeThread", file_auto_task_runner), 163 AutoThread::Create("ChromotingEncodeThread", file_auto_task_runner),
163 url_request_context_getter)); 164 url_request_context_getter));
164 } 165 }
165 #endif // defined(OS_CHROMEOS) 166 #endif // defined(OS_CHROMEOS)
166 167
167 } // namespace remoting 168 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698