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

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

Issue 1969053002: Fix include path for moved thread_task_runner_handle.h header in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 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
« no previous file with comments | « remoting/host/audio_pump.cc ('k') | remoting/host/desktop_capturer_proxy.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 (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/client_session.h" 5 #include "remoting/host/client_session.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/memory/ptr_util.h" 11 #include "base/memory/ptr_util.h"
12 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "remoting/base/capabilities.h" 15 #include "remoting/base/capabilities.h"
16 #include "remoting/base/constants.h" 16 #include "remoting/base/constants.h"
17 #include "remoting/base/logging.h" 17 #include "remoting/base/logging.h"
18 #include "remoting/codec/audio_encoder.h" 18 #include "remoting/codec/audio_encoder.h"
19 #include "remoting/codec/audio_encoder_opus.h" 19 #include "remoting/codec/audio_encoder_opus.h"
20 #include "remoting/codec/audio_encoder_verbatim.h" 20 #include "remoting/codec/audio_encoder_verbatim.h"
21 #include "remoting/host/audio_capturer.h" 21 #include "remoting/host/audio_capturer.h"
22 #include "remoting/host/audio_pump.h" 22 #include "remoting/host/audio_pump.h"
23 #include "remoting/host/desktop_environment.h" 23 #include "remoting/host/desktop_environment.h"
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 connection_->client_stub()->SetVideoLayout(layout); 477 connection_->client_stub()->SetVideoLayout(layout);
478 } else { 478 } else {
479 pending_video_layout_message_.reset(new protocol::VideoLayout(layout)); 479 pending_video_layout_message_.reset(new protocol::VideoLayout(layout));
480 } 480 }
481 break; 481 break;
482 } 482 }
483 } 483 }
484 } 484 }
485 485
486 } // namespace remoting 486 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/audio_pump.cc ('k') | remoting/host/desktop_capturer_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698