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

Side by Side Diff: remoting/protocol/ice_transport_channel.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/protocol/fake_stream_socket.cc ('k') | remoting/protocol/ice_transport_unittest.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 #include "remoting/protocol/ice_transport_channel.h" 5 #include "remoting/protocol/ice_transport_channel.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/callback_helpers.h" 11 #include "base/callback_helpers.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 "jingle/glue/utils.h" 14 #include "jingle/glue/utils.h"
15 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
16 #include "remoting/protocol/channel_socket_adapter.h" 16 #include "remoting/protocol/channel_socket_adapter.h"
17 #include "remoting/protocol/port_allocator_factory.h" 17 #include "remoting/protocol/port_allocator_factory.h"
18 #include "remoting/protocol/transport_context.h" 18 #include "remoting/protocol/transport_context.h"
19 #include "third_party/webrtc/base/network.h" 19 #include "third_party/webrtc/base/network.h"
20 #include "third_party/webrtc/p2p/base/p2pconstants.h" 20 #include "third_party/webrtc/p2p/base/p2pconstants.h"
21 #include "third_party/webrtc/p2p/base/p2ptransportchannel.h" 21 #include "third_party/webrtc/p2p/base/p2ptransportchannel.h"
22 #include "third_party/webrtc/p2p/base/port.h" 22 #include "third_party/webrtc/p2p/base/port.h"
23 #include "third_party/webrtc/p2p/client/httpportallocator.h" 23 #include "third_party/webrtc/p2p/client/httpportallocator.h"
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 266
267 // Restart ICE by resetting ICE password. 267 // Restart ICE by resetting ICE password.
268 std::string ice_password = rtc::CreateRandomString(cricket::ICE_PWD_LENGTH); 268 std::string ice_password = rtc::CreateRandomString(cricket::ICE_PWD_LENGTH);
269 delegate_->OnChannelIceCredentials(this, ice_username_fragment_, 269 delegate_->OnChannelIceCredentials(this, ice_username_fragment_,
270 ice_password); 270 ice_password);
271 channel_->SetIceCredentials(ice_username_fragment_, ice_password); 271 channel_->SetIceCredentials(ice_username_fragment_, ice_password);
272 } 272 }
273 273
274 } // namespace protocol 274 } // namespace protocol
275 } // namespace remoting 275 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/fake_stream_socket.cc ('k') | remoting/protocol/ice_transport_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698