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 <stdio.h> | 5 #include <stdio.h> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/at_exit.h" | 8 #include "base/at_exit.h" |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/cancelable_callback.h" | 10 #include "base/cancelable_callback.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
16 #include "base/string_split.h" | |
17 #include "base/string_util.h" | 16 #include "base/string_util.h" |
18 #include "base/stringprintf.h" | 17 #include "base/stringprintf.h" |
| 18 #include "base/strings/string_split.h" |
19 #include "base/time.h" | 19 #include "base/time.h" |
20 #include "net/base/address_list.h" | 20 #include "net/base/address_list.h" |
21 #include "net/base/host_cache.h" | 21 #include "net/base/host_cache.h" |
22 #include "net/base/host_resolver_impl.h" | 22 #include "net/base/host_resolver_impl.h" |
23 #include "net/base/ip_endpoint.h" | 23 #include "net/base/ip_endpoint.h" |
24 #include "net/base/net_errors.h" | 24 #include "net/base/net_errors.h" |
25 #include "net/base/net_log.h" | 25 #include "net/base/net_log.h" |
26 #include "net/base/net_util.h" | 26 #include "net/base/net_util.h" |
27 #include "net/dns/dns_client.h" | 27 #include "net/dns/dns_client.h" |
28 #include "net/dns/dns_config_service.h" | 28 #include "net/dns/dns_config_service.h" |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 } | 493 } |
494 | 494 |
495 } // empty namespace | 495 } // empty namespace |
496 | 496 |
497 } // namespace net | 497 } // namespace net |
498 | 498 |
499 int main(int argc, const char* argv[]) { | 499 int main(int argc, const char* argv[]) { |
500 net::GDig dig; | 500 net::GDig dig; |
501 return dig.Main(argc, argv); | 501 return dig.Main(argc, argv); |
502 } | 502 } |
OLD | NEW |