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

Side by Side Diff: content/renderer/media/webrtc_identity_service.cc

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/renderer/media/webrtc_identity_service.h" 5 #include "content/renderer/media/webrtc_identity_service.h"
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 #include "base/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
10 #include "content/public/renderer/render_thread.h" 10 #include "content/public/renderer/render_thread.h"
11 #include "net/base/net_errors.h" 11 #include "net/base/net_errors.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 WebRTCIdentityService::RequestInfo::RequestInfo( 15 WebRTCIdentityService::RequestInfo::RequestInfo(
16 const WebRTCIdentityMsg_RequestIdentity_Params& params, 16 const WebRTCIdentityMsg_RequestIdentity_Params& params,
17 const SuccessCallback& success_callback, 17 const SuccessCallback& success_callback,
18 const FailureCallback& failure_callback) 18 const FailureCallback& failure_callback)
19 : params(params), 19 : params(params),
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 } 136 }
137 137
138 void WebRTCIdentityService::OnOutstandingRequestReturned() { 138 void WebRTCIdentityService::OnOutstandingRequestReturned() {
139 pending_requests_.pop_front(); 139 pending_requests_.pop_front();
140 140
141 if (!pending_requests_.empty()) 141 if (!pending_requests_.empty())
142 SendRequest(pending_requests_.front()); 142 SendRequest(pending_requests_.front());
143 } 143 }
144 144
145 } // namespace content 145 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/webrtc/media_stream_video_webrtc_sink.cc ('k') | content/renderer/p2p/empty_network_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698