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

Side by Side Diff: content/renderer/p2p/filtering_network_manager.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 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 "content/renderer/p2p/filtering_network_manager.h" 5 #include "content/renderer/p2p/filtering_network_manager.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "media/base/media_permission.h" 13 #include "media/base/media_permission.h"
14 14
15 namespace content { 15 namespace content {
16 16
17 FilteringNetworkManager::FilteringNetworkManager( 17 FilteringNetworkManager::FilteringNetworkManager(
18 rtc::NetworkManager* network_manager, 18 rtc::NetworkManager* network_manager,
19 const GURL& requesting_origin, 19 const GURL& requesting_origin,
20 media::MediaPermission* media_permission) 20 media::MediaPermission* media_permission)
21 : network_manager_(network_manager), 21 : network_manager_(network_manager),
22 media_permission_(media_permission), 22 media_permission_(media_permission),
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 175
176 sent_first_update_ = true; 176 sent_first_update_ = true;
177 received_networks_changed_since_last_firing_ = false; 177 received_networks_changed_since_last_firing_ = false;
178 } 178 }
179 179
180 void FilteringNetworkManager::SendNetworksChangedSignal() { 180 void FilteringNetworkManager::SendNetworksChangedSignal() {
181 SignalNetworksChanged(); 181 SignalNetworksChanged();
182 } 182 }
183 183
184 } // namespace content 184 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/p2p/empty_network_manager.cc ('k') | content/renderer/p2p/filtering_network_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698