// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/common/extensions/sync_helper.h" #include "base/logging.h" #include "components/app_constants/constants.h" #include "extensions/common/constants.h" #include "extensions/common/extension.h" #include "extensions/common/manifest.h" #include "extensions/common/manifest_url_handlers.h" namespace extensions { namespace sync_helper { bool IsSyncable(const Extension* extension) { … } bool IsSyncableComponentExtension(const Extension* extension) { … } } // namespace sync_helper } // namespace extensions