| Index: chrome/common/extensions/sync_helper.cc
|
| diff --git a/chrome/common/extensions/sync_helper.cc b/chrome/common/extensions/sync_helper.cc
|
| index 1219073330969ca44992c268680f19db97540e7e..6131b3dcf39b5ab875325865a220335f6e3a3ed3 100644
|
| --- a/chrome/common/extensions/sync_helper.cc
|
| +++ b/chrome/common/extensions/sync_helper.cc
|
| @@ -19,9 +19,8 @@ namespace extensions {
|
| namespace sync_helper {
|
|
|
| bool IsSyncable(const Extension* extension) {
|
| - if (FeatureProvider::GetBehaviorFeature(BehaviorFeature::kDoNotSync)
|
| - ->IsAvailableToExtension(extension)
|
| - .is_available()) {
|
| + if (FeatureProvider::BehaviorFeatureIsAvailable(BehaviorFeature::kDoNotSync,
|
| + extension)) {
|
| return false;
|
| }
|
|
|
|
|