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

Side by Side Diff: net/tools/gdig/gdig.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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
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 <stdio.h> 5 #include <stdio.h>
6 6
7 #include <memory> 7 #include <memory>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 17 matching lines...) Expand all
28 #include "net/base/ip_address.h" 28 #include "net/base/ip_address.h"
29 #include "net/base/ip_endpoint.h" 29 #include "net/base/ip_endpoint.h"
30 #include "net/base/net_errors.h" 30 #include "net/base/net_errors.h"
31 #include "net/base/url_util.h" 31 #include "net/base/url_util.h"
32 #include "net/dns/dns_client.h" 32 #include "net/dns/dns_client.h"
33 #include "net/dns/dns_config_service.h" 33 #include "net/dns/dns_config_service.h"
34 #include "net/dns/dns_protocol.h" 34 #include "net/dns/dns_protocol.h"
35 #include "net/dns/host_cache.h" 35 #include "net/dns/host_cache.h"
36 #include "net/dns/host_resolver_impl.h" 36 #include "net/dns/host_resolver_impl.h"
37 #include "net/log/net_log.h" 37 #include "net/log/net_log.h"
38 #include "net/log/net_log_capture_mode.h"
38 #include "net/log/net_log_source_type.h" 39 #include "net/log/net_log_source_type.h"
40 #include "net/log/net_log_with_source.h"
39 #include "net/tools/gdig/file_net_log.h" 41 #include "net/tools/gdig/file_net_log.h"
40 42
41 #if defined(OS_MACOSX) 43 #if defined(OS_MACOSX)
42 #include "base/mac/scoped_nsautorelease_pool.h" 44 #include "base/mac/scoped_nsautorelease_pool.h"
43 #endif 45 #endif
44 46
45 namespace net { 47 namespace net {
46 48
47 namespace { 49 namespace {
48 50
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 } 515 }
514 516
515 } // empty namespace 517 } // empty namespace
516 518
517 } // namespace net 519 } // namespace net
518 520
519 int main(int argc, const char* argv[]) { 521 int main(int argc, const char* argv[]) {
520 net::GDig dig; 522 net::GDig dig;
521 return dig.Main(argc, argv); 523 return dig.Main(argc, argv);
522 } 524 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698