Skip to content

Commit

Permalink
Remove net_log.h from net_util, as it's no longer needed by net_log.h.
Browse files Browse the repository at this point in the history
Also fix a large number of other files that were depending on this
include.

BUG=none
TBR=gene@chromium.org, sky@chromium.org

Review URL: https://codereview.chromium.org/235333003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264062 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
mmenke@chromium.org committed Apr 16, 2014
1 parent 8907c23 commit 0ca7e8a
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
#include <string>
#include <vector>

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_vector.h"
#include "base/memory/weak_ptr.h"
#include "chrome/common/local_discovery/service_discovery_client.h"
#include "content/public/browser/utility_process_host_client.h"

Expand Down
1 change: 1 addition & 0 deletions chrome/browser/ui/elide_url.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include "chrome/browser/ui/elide_url.h"

#include "base/logging.h"
#include "base/strings/string_split.h"
#include "base/strings/utf_string_conversions.h"
#include "net/base/escape.h"
Expand Down
1 change: 1 addition & 0 deletions cloud_print/gcp20/prototype/dns_packet_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "cloud_print/gcp20/prototype/dns_packet_parser.h"

#include "base/big_endian.h"
#include "base/logging.h"

DnsPacketParser::DnsPacketParser(const char* packet, size_t length)
: packet_(packet),
Expand Down
2 changes: 2 additions & 0 deletions cloud_print/gcp20/prototype/dns_response_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
#include <vector>

#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "net/base/io_buffer.h"
#include "net/base/net_util.h"
#include "net/dns/dns_protocol.h"

Expand Down
1 change: 1 addition & 0 deletions content/renderer/p2p/socket_client_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include "base/bind.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/time/time.h"
#include "content/common/p2p_messages.h"
#include "content/renderer/p2p/socket_client_delegate.h"
#include "content/renderer/p2p/socket_dispatcher.h"
Expand Down
1 change: 1 addition & 0 deletions content/renderer/p2p/socket_client_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

namespace base {
class MessageLoopProxy;
class TimeTicks;
} // namespace base

namespace content {
Expand Down
1 change: 0 additions & 1 deletion net/base/net_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include "net/base/address_family.h"
#include "net/base/escape.h"
#include "net/base/net_export.h"
#include "net/base/net_log.h"

class GURL;

Expand Down
1 change: 1 addition & 0 deletions net/quic/quic_address_mismatch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include "net/quic/quic_address_mismatch.h"

#include "base/logging.h"
#include "net/base/ip_endpoint.h"

namespace net {
Expand Down
1 change: 1 addition & 0 deletions net/quic/quic_connection_logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <bitset>

#include "net/base/ip_endpoint.h"
#include "net/base/net_log.h"
#include "net/base/network_change_notifier.h"
#include "net/quic/quic_connection.h"
#include "net/quic/quic_protocol.h"
Expand Down
5 changes: 5 additions & 0 deletions remoting/host/it2me/it2me_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
#define REMOTING_HOST_IT2ME_IT2ME_HOST_H_

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/single_thread_task_runner.h"
#include "remoting/host/log_to_server.h"
#include "remoting/jingle_glue/xmpp_signal_strategy.h"

namespace base {
class DictionaryValue;
}

namespace remoting {

class RegisterSupportHostRequest;
Expand Down

0 comments on commit 0ca7e8a

Please sign in to comment.