chromium/chrome/common/initialize_extensions_client.cc

// Copyright 2018 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/initialize_extensions_client.h"

#include <map>
#include <memory>

#include "base/no_destructor.h"
#include "build/chromeos_buildflags.h"
#include "chrome/common/extensions/chrome_extensions_client.h"
#include "chrome/common/extensions/webstore_override.h"
#include "extensions/buildflags/buildflags.h"
#include "extensions/common/extensions_client.h"
#include "extensions/common/features/feature.h"

#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "chrome/common/controlled_frame/controlled_frame.h"
#include "chrome/common/controlled_frame/controlled_frame_api_provider.h"
#endif

#if BUILDFLAG(ENABLE_PLATFORM_APPS)
#include "chrome/common/apps/platform_apps/chrome_apps_api_provider.h"
#endif

#if BUILDFLAG(IS_CHROMEOS)
#include "chrome/common/chromeos/extensions/chromeos_system_extensions_api_provider.h"
#endif

namespace {

#if BUILDFLAG(ENABLE_EXTENSIONS)

// Helper method to merge all the FeatureDelegatedAvailabilityCheckMaps into a
// single map.
extensions::Feature::FeatureDelegatedAvailabilityCheckMap
CombineAllAvailabilityCheckMaps() {}

#endif  // BUILDFLAG(ENABLE_EXTENSIONS)

}  // namespace

void EnsureExtensionsClientInitialized() {}