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

Side by Side Diff: chrome/browser/sync/test/integration/sync_test.cc

Issue 2387553002: [Sync] Removing duplicated includes between cc and h files. (Closed)
Patch Set: Fixing DataTypeStatusTable 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 "chrome/browser/sync/test/integration/sync_test.h" 5 #include "chrome/browser/sync/test/integration/sync_test.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <limits> 10 #include <limits>
11 #include <memory>
12 #include <vector>
13 11
14 #include "base/bind.h" 12 #include "base/bind.h"
15 #include "base/command_line.h" 13 #include "base/command_line.h"
16 #include "base/files/scoped_temp_dir.h" 14 #include "base/files/scoped_temp_dir.h"
17 #include "base/guid.h" 15 #include "base/guid.h"
18 #include "base/memory/ptr_util.h" 16 #include "base/memory/ptr_util.h"
19 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
20 #include "base/message_loop/message_loop.h" 18 #include "base/message_loop/message_loop.h"
21 #include "base/path_service.h" 19 #include "base/path_service.h"
22 #include "base/process/launch.h" 20 #include "base/process/launch.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 #include "components/invalidation/public/invalidation_service.h" 65 #include "components/invalidation/public/invalidation_service.h"
68 #include "components/keyed_service/core/keyed_service.h" 66 #include "components/keyed_service/core/keyed_service.h"
69 #include "components/os_crypt/os_crypt_mocker.h" 67 #include "components/os_crypt/os_crypt_mocker.h"
70 #include "components/search_engines/template_url_service.h" 68 #include "components/search_engines/template_url_service.h"
71 #include "components/signin/core/browser/profile_identity_provider.h" 69 #include "components/signin/core/browser/profile_identity_provider.h"
72 #include "components/signin/core/browser/signin_manager.h" 70 #include "components/signin/core/browser/signin_manager.h"
73 #include "components/sync/driver/invalidation_helper.h" 71 #include "components/sync/driver/invalidation_helper.h"
74 #include "components/sync/driver/sync_driver_switches.h" 72 #include "components/sync/driver/sync_driver_switches.h"
75 #include "components/sync/engine_impl/sync_scheduler_impl.h" 73 #include "components/sync/engine_impl/sync_scheduler_impl.h"
76 #include "components/sync/protocol/sync.pb.h" 74 #include "components/sync/protocol/sync.pb.h"
77 #include "components/sync/test/fake_server/fake_server.h"
78 #include "components/sync/test/fake_server/fake_server_network_resources.h" 75 #include "components/sync/test/fake_server/fake_server_network_resources.h"
79 #include "content/public/browser/navigation_entry.h" 76 #include "content/public/browser/navigation_entry.h"
80 #include "content/public/browser/notification_service.h" 77 #include "content/public/browser/notification_service.h"
81 #include "content/public/browser/web_contents.h" 78 #include "content/public/browser/web_contents.h"
82 #include "content/public/test/test_browser_thread.h" 79 #include "content/public/test/test_browser_thread.h"
83 #include "google_apis/gaia/gaia_urls.h" 80 #include "google_apis/gaia/gaia_urls.h"
84 #include "net/base/escape.h" 81 #include "net/base/escape.h"
85 #include "net/base/load_flags.h" 82 #include "net/base/load_flags.h"
86 #include "net/base/network_change_notifier.h" 83 #include "net/base/network_change_notifier.h"
87 #include "net/base/port_util.h" 84 #include "net/base/port_util.h"
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 1129
1133 void SyncTest::TriggerSyncForModelTypes(int index, 1130 void SyncTest::TriggerSyncForModelTypes(int index,
1134 syncer::ModelTypeSet model_types) { 1131 syncer::ModelTypeSet model_types) {
1135 GetSyncService(index)->TriggerRefresh(model_types); 1132 GetSyncService(index)->TriggerRefresh(model_types);
1136 } 1133 }
1137 1134
1138 void SyncTest::SetPreexistingPreferencesFileContents( 1135 void SyncTest::SetPreexistingPreferencesFileContents(
1139 const std::string& contents) { 1136 const std::string& contents) {
1140 preexisting_preferences_file_contents_ = contents; 1137 preexisting_preferences_file_contents_ = contents;
1141 } 1138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698