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

Side by Side Diff: net/dns/dns_config_service_posix.cc

Issue 14820034: Cleanup: Remove unneeded base/file_util.h includes in chrome_frame, courgette, ipc, media, and net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: fix build Created 7 years, 7 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
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/dns/dns_config_service_posix.h" 5 #include "net/dns/dns_config_service_posix.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/file_util.h"
12 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
13 #include "base/files/file_path_watcher.h" 12 #include "base/files/file_path_watcher.h"
14 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
15 #include "base/metrics/histogram.h" 14 #include "base/metrics/histogram.h"
16 #include "base/time.h" 15 #include "base/time.h"
17 #include "net/base/ip_endpoint.h" 16 #include "net/base/ip_endpoint.h"
18 #include "net/base/net_util.h" 17 #include "net/base/net_util.h"
19 #include "net/dns/dns_hosts.h" 18 #include "net/dns/dns_hosts.h"
20 #include "net/dns/dns_protocol.h" 19 #include "net/dns/dns_protocol.h"
21 #include "net/dns/notify_watcher_mac.h" 20 #include "net/dns/notify_watcher_mac.h"
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 virtual void ReadNow() OVERRIDE {} 395 virtual void ReadNow() OVERRIDE {}
397 virtual bool StartWatching() OVERRIDE { return false; } 396 virtual bool StartWatching() OVERRIDE { return false; }
398 }; 397 };
399 // static 398 // static
400 scoped_ptr<DnsConfigService> DnsConfigService::CreateSystemService() { 399 scoped_ptr<DnsConfigService> DnsConfigService::CreateSystemService() {
401 return scoped_ptr<DnsConfigService>(new StubDnsConfigService()); 400 return scoped_ptr<DnsConfigService>(new StubDnsConfigService());
402 } 401 }
403 #endif 402 #endif
404 403
405 } // namespace net 404 } // namespace net
OLDNEW
« no previous file with comments | « net/disk_cache/storage_block_unittest.cc ('k') | net/test/spawned_test_server/local_test_server_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698