OLD | NEW |
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 "net/base/net_util.h" | 5 #include "net/base/net_util.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "base/basictypes.h" | 28 #include "base/basictypes.h" |
29 #include "base/file_util.h" | 29 #include "base/file_util.h" |
30 #include "base/files/file_path.h" | 30 #include "base/files/file_path.h" |
31 #include "base/i18n/file_util_icu.h" | 31 #include "base/i18n/file_util_icu.h" |
32 #include "base/i18n/icu_string_conversions.h" | 32 #include "base/i18n/icu_string_conversions.h" |
33 #include "base/i18n/time_formatting.h" | 33 #include "base/i18n/time_formatting.h" |
34 #include "base/json/string_escape.h" | 34 #include "base/json/string_escape.h" |
35 #include "base/lazy_instance.h" | 35 #include "base/lazy_instance.h" |
36 #include "base/logging.h" | 36 #include "base/logging.h" |
37 #include "base/memory/singleton.h" | 37 #include "base/memory/singleton.h" |
38 #include "base/message_loop.h" | 38 #include "base/message_loop/message_loop.h" |
39 #include "base/metrics/histogram.h" | 39 #include "base/metrics/histogram.h" |
40 #include "base/path_service.h" | 40 #include "base/path_service.h" |
41 #include "base/stl_util.h" | 41 #include "base/stl_util.h" |
42 #include "base/strings/string_number_conversions.h" | 42 #include "base/strings/string_number_conversions.h" |
43 #include "base/strings/string_piece.h" | 43 #include "base/strings/string_piece.h" |
44 #include "base/strings/string_split.h" | 44 #include "base/strings/string_split.h" |
45 #include "base/strings/string_tokenizer.h" | 45 #include "base/strings/string_tokenizer.h" |
46 #include "base/strings/string_util.h" | 46 #include "base/strings/string_util.h" |
47 #include "base/strings/stringprintf.h" | 47 #include "base/strings/stringprintf.h" |
48 #include "base/strings/sys_string_conversions.h" | 48 #include "base/strings/sys_string_conversions.h" |
(...skipping 2175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2224 | 2224 |
2225 NetworkInterface::NetworkInterface(const std::string& name, | 2225 NetworkInterface::NetworkInterface(const std::string& name, |
2226 const IPAddressNumber& address) | 2226 const IPAddressNumber& address) |
2227 : name(name), address(address) { | 2227 : name(name), address(address) { |
2228 } | 2228 } |
2229 | 2229 |
2230 NetworkInterface::~NetworkInterface() { | 2230 NetworkInterface::~NetworkInterface() { |
2231 } | 2231 } |
2232 | 2232 |
2233 } // namespace net | 2233 } // namespace net |
OLD | NEW |