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

Side by Side Diff: net/base/net_util.cc

Issue 18252003: Replace third_party/icu/public with third_party/icu/source (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: roll ICU to 211851 Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « ios/public/DEPS ('k') | net/ftp/ftp_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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
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 "third_party/icu/public/common/unicode/uidna.h" 71 #include "third_party/icu/source/common/unicode/uidna.h"
72 #include "third_party/icu/public/common/unicode/uniset.h" 72 #include "third_party/icu/source/common/unicode/uniset.h"
73 #include "third_party/icu/public/common/unicode/uscript.h" 73 #include "third_party/icu/source/common/unicode/uscript.h"
74 #include "third_party/icu/public/common/unicode/uset.h" 74 #include "third_party/icu/source/common/unicode/uset.h"
75 #include "third_party/icu/public/i18n/unicode/datefmt.h" 75 #include "third_party/icu/source/i18n/unicode/datefmt.h"
76 #include "third_party/icu/public/i18n/unicode/regex.h" 76 #include "third_party/icu/source/i18n/unicode/regex.h"
77 #include "third_party/icu/public/i18n/unicode/ulocdata.h" 77 #include "third_party/icu/source/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 base::FilePath::CharType kFileURLPrefix[] = 86 static const base::FilePath::CharType kFileURLPrefix[] =
87 FILE_PATH_LITERAL("file:///"); 87 FILE_PATH_LITERAL("file:///");
(...skipping 2136 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « ios/public/DEPS ('k') | net/ftp/ftp_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698