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

Side by Side Diff: components/sync/driver/sync_service_utils.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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/sync_driver/sync_service_utils.h" 5 #include "components/sync/driver/sync_service_utils.h"
6 6
7 #include "components/sync_driver/sync_prefs.h" 7 #include "components/sync/driver/sync_prefs.h"
8 #include "components/sync_driver/sync_service.h" 8 #include "components/sync/driver/sync_service.h"
9 9
10 namespace sync_driver { 10 namespace sync_driver {
11 11
12 bool IsTabSyncEnabledAndUnencrypted(SyncService* sync_service, 12 bool IsTabSyncEnabledAndUnencrypted(SyncService* sync_service,
13 PrefService* pref_service) { 13 PrefService* pref_service) {
14 // Check field trials and settings allow sending the URL on suggest requests. 14 // Check field trials and settings allow sending the URL on suggest requests.
15 sync_driver::SyncPrefs sync_prefs(pref_service); 15 sync_driver::SyncPrefs sync_prefs(pref_service);
16 return sync_service && sync_service->CanSyncStart() && 16 return sync_service && sync_service->CanSyncStart() &&
17 sync_prefs.GetPreferredDataTypes(syncer::UserTypes()) 17 sync_prefs.GetPreferredDataTypes(syncer::UserTypes())
18 .Has(syncer::PROXY_TABS) && 18 .Has(syncer::PROXY_TABS) &&
19 !sync_service->GetEncryptedDataTypes().Has(syncer::SESSIONS); 19 !sync_service->GetEncryptedDataTypes().Has(syncer::SESSIONS);
20 } 20 }
21 21
22 } // namespace sync_driver 22 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/sync/driver/sync_service_utils.h ('k') | components/sync/driver/sync_stopped_reporter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698