| Index: components/suggestions/suggestions_service.cc
|
| diff --git a/components/suggestions/suggestions_service.cc b/components/suggestions/suggestions_service.cc
|
| index 47072e811b4356c16219bc1bccad12bbd57368ba..8df253f8e8b20f7aabedf4d0730c8e196dad05d8 100644
|
| --- a/components/suggestions/suggestions_service.cc
|
| +++ b/components/suggestions/suggestions_service.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;
|
|
|