| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <unicode/regex.h> | 7 #include <unicode/regex.h> |
| 8 #include <unicode/ucnv.h> | 8 #include <unicode/ucnv.h> |
| 9 #include <unicode/uidna.h> | 9 #include <unicode/uidna.h> |
| 10 #include <unicode/ulocdata.h> | 10 #include <unicode/ulocdata.h> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "base/file_util.h" | 38 #include "base/file_util.h" |
| 39 #include "base/i18n/file_util_icu.h" | 39 #include "base/i18n/file_util_icu.h" |
| 40 #include "base/i18n/icu_string_conversions.h" | 40 #include "base/i18n/icu_string_conversions.h" |
| 41 #include "base/i18n/time_formatting.h" | 41 #include "base/i18n/time_formatting.h" |
| 42 #include "base/json/string_escape.h" | 42 #include "base/json/string_escape.h" |
| 43 #include "base/logging.h" | 43 #include "base/logging.h" |
| 44 #include "base/memory/singleton.h" | 44 #include "base/memory/singleton.h" |
| 45 #include "base/message_loop.h" | 45 #include "base/message_loop.h" |
| 46 #include "base/metrics/histogram.h" | 46 #include "base/metrics/histogram.h" |
| 47 #include "base/path_service.h" | 47 #include "base/path_service.h" |
| 48 #include "base/stl_util-inl.h" | 48 #include "base/stl_util.h" |
| 49 #include "base/string_number_conversions.h" | 49 #include "base/string_number_conversions.h" |
| 50 #include "base/string_piece.h" | 50 #include "base/string_piece.h" |
| 51 #include "base/string_split.h" | 51 #include "base/string_split.h" |
| 52 #include "base/string_tokenizer.h" | 52 #include "base/string_tokenizer.h" |
| 53 #include "base/string_util.h" | 53 #include "base/string_util.h" |
| 54 #include "base/stringprintf.h" | 54 #include "base/stringprintf.h" |
| 55 #include "base/synchronization/lock.h" | 55 #include "base/synchronization/lock.h" |
| 56 #include "base/sys_string_conversions.h" | 56 #include "base/sys_string_conversions.h" |
| 57 #include "base/time.h" | 57 #include "base/time.h" |
| 58 #include "base/utf_offset_string_conversions.h" | 58 #include "base/utf_offset_string_conversions.h" |
| (...skipping 2188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2247 | 2247 |
| 2248 NetworkInterface::NetworkInterface(const std::string& name, | 2248 NetworkInterface::NetworkInterface(const std::string& name, |
| 2249 const IPAddressNumber& address) | 2249 const IPAddressNumber& address) |
| 2250 : name(name), address(address) { | 2250 : name(name), address(address) { |
| 2251 } | 2251 } |
| 2252 | 2252 |
| 2253 NetworkInterface::~NetworkInterface() { | 2253 NetworkInterface::~NetworkInterface() { |
| 2254 } | 2254 } |
| 2255 | 2255 |
| 2256 } // namespace net | 2256 } // namespace net |
| OLD | NEW |