| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #include "net/android/network_library.h" | 61 #include "net/android/network_library.h" |
| 62 #endif | 62 #endif |
| 63 #include "net/base/dns_util.h" | 63 #include "net/base/dns_util.h" |
| 64 #include "net/base/escape.h" | 64 #include "net/base/escape.h" |
| 65 #include "net/base/mime_util.h" | 65 #include "net/base/mime_util.h" |
| 66 #include "net/base/net_module.h" | 66 #include "net/base/net_module.h" |
| 67 #if defined(OS_WIN) | 67 #if defined(OS_WIN) |
| 68 #include "net/base/winsock_init.h" | 68 #include "net/base/winsock_init.h" |
| 69 #endif | 69 #endif |
| 70 #include "net/http/http_content_disposition.h" | 70 #include "net/http/http_content_disposition.h" |
| 71 #include "unicode/datefmt.h" | 71 #include "third_party/icu/public/common/unicode/uidna.h" |
| 72 #include "unicode/regex.h" | 72 #include "third_party/icu/public/common/unicode/uniset.h" |
| 73 #include "unicode/uidna.h" | 73 #include "third_party/icu/public/common/unicode/uscript.h" |
| 74 #include "unicode/ulocdata.h" | 74 #include "third_party/icu/public/common/unicode/uset.h" |
| 75 #include "unicode/uniset.h" | 75 #include "third_party/icu/public/i18n/unicode/datefmt.h" |
| 76 #include "unicode/uscript.h" | 76 #include "third_party/icu/public/i18n/unicode/regex.h" |
| 77 #include "unicode/uset.h" | 77 #include "third_party/icu/public/i18n/unicode/ulocdata.h" |
| 78 | 78 |
| 79 using base::Time; | 79 using base::Time; |
| 80 | 80 |
| 81 namespace net { | 81 namespace net { |
| 82 | 82 |
| 83 namespace { | 83 namespace { |
| 84 | 84 |
| 85 // what we prepend to get a file URL | 85 // what we prepend to get a file URL |
| 86 static const FilePath::CharType kFileURLPrefix[] = | 86 static const FilePath::CharType kFileURLPrefix[] = |
| 87 FILE_PATH_LITERAL("file:///"); | 87 FILE_PATH_LITERAL("file:///"); |
| (...skipping 2085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2173 | 2173 |
| 2174 NetworkInterface::NetworkInterface(const std::string& name, | 2174 NetworkInterface::NetworkInterface(const std::string& name, |
| 2175 const IPAddressNumber& address) | 2175 const IPAddressNumber& address) |
| 2176 : name(name), address(address) { | 2176 : name(name), address(address) { |
| 2177 } | 2177 } |
| 2178 | 2178 |
| 2179 NetworkInterface::~NetworkInterface() { | 2179 NetworkInterface::~NetworkInterface() { |
| 2180 } | 2180 } |
| 2181 | 2181 |
| 2182 } // namespace net | 2182 } // namespace net |
| OLD | NEW |