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

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

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Address comments. Created 4 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/p2p_sync_refresher.h" 5 #include "chrome/browser/sync/test/integration/p2p_sync_refresher.h"
6 6
7 #include "chrome/browser/chrome_notification_types.h" 7 #include "chrome/browser/chrome_notification_types.h"
8 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" 8 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
9 #include "chrome/browser/sync/test/integration/sync_test.h" 9 #include "chrome/browser/sync/test/integration/sync_test.h"
10 #include "components/browser_sync/profile_sync_service.h" 10 #include "components/browser_sync/profile_sync_service.h"
11 #include "components/sync/engine/cycle/sync_cycle_snapshot.h" 11 #include "components/sync/engine/cycle/sync_cycle_snapshot.h"
12 #include "content/public/browser/notification_service.h" 12 #include "content/public/browser/notification_service.h"
13 13
14 P2PSyncRefresher::P2PSyncRefresher(Profile* profile, 14 P2PSyncRefresher::P2PSyncRefresher(
15 ProfileSyncService* sync_service) 15 Profile* profile,
16 browser_sync::ProfileSyncService* sync_service)
16 : profile_(profile), sync_service_(sync_service) { 17 : profile_(profile), sync_service_(sync_service) {
17 sync_service_->AddObserver(this); 18 sync_service_->AddObserver(this);
18 } 19 }
19 20
20 P2PSyncRefresher::~P2PSyncRefresher() { 21 P2PSyncRefresher::~P2PSyncRefresher() {
21 sync_service_->RemoveObserver(this); 22 sync_service_->RemoveObserver(this);
22 } 23 }
23 24
24 void P2PSyncRefresher::OnStateChanged() {} 25 void P2PSyncRefresher::OnStateChanged() {}
25 26
26 void P2PSyncRefresher::OnSyncCycleCompleted() { 27 void P2PSyncRefresher::OnSyncCycleCompleted() {
27 const syncer::SyncCycleSnapshot& snap = sync_service_->GetLastCycleSnapshot(); 28 const syncer::SyncCycleSnapshot& snap = sync_service_->GetLastCycleSnapshot();
28 bool is_notifiable_commit = 29 bool is_notifiable_commit =
29 (snap.model_neutral_state().num_successful_commits > 0); 30 (snap.model_neutral_state().num_successful_commits > 0);
30 if (is_notifiable_commit) { 31 if (is_notifiable_commit) {
31 syncer::ModelTypeSet model_types = 32 syncer::ModelTypeSet model_types =
32 snap.model_neutral_state().commit_request_types; 33 snap.model_neutral_state().commit_request_types;
33 SyncTest* test = sync_datatype_helper::test(); 34 SyncTest* test = sync_datatype_helper::test();
34 for (int i = 0; i < test->num_clients(); ++i) { 35 for (int i = 0; i < test->num_clients(); ++i) {
35 if (profile_ != test->GetProfile(i)) 36 if (profile_ != test->GetProfile(i))
36 test->TriggerSyncForModelTypes(i, model_types); 37 test->TriggerSyncForModelTypes(i, model_types);
37 } 38 }
38 } 39 }
39 } 40 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/test/integration/p2p_sync_refresher.h ('k') | chrome/browser/sync/test/integration/passwords_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698