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

Side by Side Diff: components/sync/tools/sync_client.cc

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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
« no previous file with comments | « components/sync/tools/DEPS ('k') | components/sync/tools/sync_listen_notifications.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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include <cstddef> 7 #include <cstddef>
8 #include <cstdio> 8 #include <cstdio>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 21 matching lines...) Expand all
32 #include "components/sync/base/model_type.h" 32 #include "components/sync/base/model_type.h"
33 #include "components/sync/base/unrecoverable_error_handler.h" 33 #include "components/sync/base/unrecoverable_error_handler.h"
34 #include "components/sync/base/weak_handle.h" 34 #include "components/sync/base/weak_handle.h"
35 #include "components/sync/core/base_node.h" 35 #include "components/sync/core/base_node.h"
36 #include "components/sync/core/http_bridge.h" 36 #include "components/sync/core/http_bridge.h"
37 #include "components/sync/core/http_post_provider_factory.h" 37 #include "components/sync/core/http_post_provider_factory.h"
38 #include "components/sync/core/internal_components_factory_impl.h" 38 #include "components/sync/core/internal_components_factory_impl.h"
39 #include "components/sync/core/read_node.h" 39 #include "components/sync/core/read_node.h"
40 #include "components/sync/core/sync_manager.h" 40 #include "components/sync/core/sync_manager.h"
41 #include "components/sync/core/sync_manager_factory.h" 41 #include "components/sync/core/sync_manager_factory.h"
42 #include "components/sync/driver/invalidation_helper.h"
42 #include "components/sync/engine/passive_model_worker.h" 43 #include "components/sync/engine/passive_model_worker.h"
43 #include "components/sync/js/js_event_details.h" 44 #include "components/sync/js/js_event_details.h"
44 #include "components/sync/js/js_event_handler.h" 45 #include "components/sync/js/js_event_handler.h"
45 #include "components/sync/test/fake_encryptor.h" 46 #include "components/sync/test/fake_encryptor.h"
46 #include "components/sync/tools/null_invalidation_state_tracker.h" 47 #include "components/sync/tools/null_invalidation_state_tracker.h"
47 #include "components/sync_driver/invalidation_helper.h"
48 #include "jingle/notifier/base/notification_method.h" 48 #include "jingle/notifier/base/notification_method.h"
49 #include "jingle/notifier/base/notifier_options.h" 49 #include "jingle/notifier/base/notifier_options.h"
50 #include "net/base/host_port_pair.h" 50 #include "net/base/host_port_pair.h"
51 #include "net/base/network_change_notifier.h" 51 #include "net/base/network_change_notifier.h"
52 #include "net/dns/host_resolver.h" 52 #include "net/dns/host_resolver.h"
53 #include "net/http/transport_security_state.h" 53 #include "net/http/transport_security_state.h"
54 #include "net/url_request/url_request_test_util.h" 54 #include "net/url_request/url_request_test_util.h"
55 #include "url/gurl.h" 55 #include "url/gurl.h"
56 56
57 #if defined(OS_MACOSX) 57 #if defined(OS_MACOSX)
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 io_thread.Stop(); 451 io_thread.Stop();
452 return 0; 452 return 0;
453 } 453 }
454 454
455 } // namespace 455 } // namespace
456 } // namespace syncer 456 } // namespace syncer
457 457
458 int main(int argc, char* argv[]) { 458 int main(int argc, char* argv[]) {
459 return syncer::SyncClientMain(argc, argv); 459 return syncer::SyncClientMain(argc, argv);
460 } 460 }
OLDNEW
« no previous file with comments | « components/sync/tools/DEPS ('k') | components/sync/tools/sync_listen_notifications.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698