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

Side by Side Diff: content/browser/renderer_host/p2p/socket_dispatcher_host.cc

Issue 1290723003: Stop including network_interfaces.h from net_util.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TOT and remove AUTHORS change as it is there already Created 5 years, 4 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 "content/browser/renderer_host/p2p/socket_dispatcher_host.h" 5 #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "content/browser/renderer_host/p2p/socket_host.h" 9 #include "content/browser/renderer_host/p2p/socket_host.h"
10 #include "content/common/p2p_messages.h" 10 #include "content/common/p2p_messages.h"
11 #include "content/public/browser/resource_context.h" 11 #include "content/public/browser/resource_context.h"
12 #include "net/base/address_list.h" 12 #include "net/base/address_list.h"
13 #include "net/base/completion_callback.h" 13 #include "net/base/completion_callback.h"
14 #include "net/base/net_errors.h" 14 #include "net/base/net_errors.h"
15 #include "net/base/network_interfaces.h"
15 #include "net/base/sys_addrinfo.h" 16 #include "net/base/sys_addrinfo.h"
16 #include "net/dns/single_request_host_resolver.h" 17 #include "net/dns/single_request_host_resolver.h"
17 #include "net/log/net_log.h" 18 #include "net/log/net_log.h"
18 #include "net/url_request/url_request_context_getter.h" 19 #include "net/url_request/url_request_context_getter.h"
19 20
20 using content::BrowserMessageFilter; 21 using content::BrowserMessageFilter;
21 using content::BrowserThread; 22 using content::BrowserThread;
22 23
23 namespace content { 24 namespace content {
24 25
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 352
352 if (!dump_incoming_rtp_packet_ && !dump_outgoing_rtp_packet_) 353 if (!dump_incoming_rtp_packet_ && !dump_outgoing_rtp_packet_)
353 packet_callback_.Reset(); 354 packet_callback_.Reset();
354 355
355 for (SocketsMap::iterator it = sockets_.begin(); it != sockets_.end(); ++it) 356 for (SocketsMap::iterator it = sockets_.begin(); it != sockets_.end(); ++it)
356 it->second->StopRtpDump(incoming, outgoing); 357 it->second->StopRtpDump(incoming, outgoing);
357 } 358 }
358 } 359 }
359 360
360 } // namespace content 361 } // namespace content
OLDNEW
« no previous file with comments | « components/metrics/net/network_metrics_provider.h ('k') | content/browser/renderer_host/pepper/pepper_network_monitor_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698