| Index: components/suggestions/suggestions_service_impl.cc
|
| diff --git a/components/suggestions/suggestions_service_impl.cc b/components/suggestions/suggestions_service_impl.cc
|
| index ae792b103f7007a7d88fa37471c7034a5e2c8d4b..f181599c6676b05f116bf142b2a409fff6a98ef0 100644
|
| --- a/components/suggestions/suggestions_service_impl.cc
|
| +++ b/components/suggestions/suggestions_service_impl.cc
|
| @@ -66,7 +66,7 @@ enum SyncState {
|
| };
|
|
|
| SyncState GetSyncState(syncer::SyncService* sync) {
|
| - if (!sync || !sync->CanSyncStart())
|
| + if (!sync || !sync->CanSyncStart() || sync->IsLocalSyncEnabled())
|
| return SYNC_OR_HISTORY_SYNC_DISABLED;
|
| if (!sync->IsSyncActive() || !sync->ConfigurationDone())
|
| return NOT_INITIALIZED_ENABLED;
|
|
|