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

Side by Side Diff: sync/tools/sync_listen_notifications.cc

Issue 12518036: net: move host_resolver files from net/base to net/dns (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 <cstddef> 5 #include <cstddef>
6 #include <cstdio> 6 #include <cstdio>
7 #include <string> 7 #include <string>
8 8
9 #include "base/at_exit.h" 9 #include "base/at_exit.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/message_loop.h" 15 #include "base/message_loop.h"
16 #include "base/threading/thread.h" 16 #include "base/threading/thread.h"
17 #include "jingle/notifier/base/notification_method.h" 17 #include "jingle/notifier/base/notification_method.h"
18 #include "jingle/notifier/base/notifier_options.h" 18 #include "jingle/notifier/base/notifier_options.h"
19 #include "net/base/host_port_pair.h" 19 #include "net/base/host_port_pair.h"
20 #include "net/base/host_resolver.h"
21 #include "net/base/network_change_notifier.h" 20 #include "net/base/network_change_notifier.h"
21 #include "net/dns/host_resolver.h"
22 #include "net/http/transport_security_state.h" 22 #include "net/http/transport_security_state.h"
23 #include "net/url_request/url_request_test_util.h" 23 #include "net/url_request/url_request_test_util.h"
24 #include "sync/internal_api/public/base/model_type.h" 24 #include "sync/internal_api/public/base/model_type.h"
25 #include "sync/internal_api/public/base/model_type_invalidation_map.h" 25 #include "sync/internal_api/public/base/model_type_invalidation_map.h"
26 #include "sync/notifier/invalidation_handler.h" 26 #include "sync/notifier/invalidation_handler.h"
27 #include "sync/notifier/invalidation_state_tracker.h" 27 #include "sync/notifier/invalidation_state_tracker.h"
28 #include "sync/notifier/invalidation_util.h" 28 #include "sync/notifier/invalidation_util.h"
29 #include "sync/notifier/invalidator.h" 29 #include "sync/notifier/invalidator.h"
30 #include "sync/notifier/invalidator_factory.h" 30 #include "sync/notifier/invalidator_factory.h"
31 #include "sync/tools/null_invalidation_state_tracker.h" 31 #include "sync/tools/null_invalidation_state_tracker.h"
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 io_thread.Stop(); 216 io_thread.Stop();
217 return 0; 217 return 0;
218 } 218 }
219 219
220 } // namespace 220 } // namespace
221 } // namespace syncer 221 } // namespace syncer
222 222
223 int main(int argc, char* argv[]) { 223 int main(int argc, char* argv[]) {
224 return syncer::SyncListenNotificationsMain(argc, argv); 224 return syncer::SyncListenNotificationsMain(argc, argv);
225 } 225 }
OLDNEW
« no previous file with comments | « sync/tools/sync_client.cc ('k') | webkit/DEPS » ('j') | webkit/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698