#include "components/component_updater/component_updater_paths.h"
#include "base/check.h"
#include "base/check_op.h"
#include "base/files/file_path.h"
#include "base/lazy_instance.h"
#include "base/path_service.h"
namespace component_updater {
namespace {
int g_components_preinstalled_root_key = …;
int g_components_preinstalled_root_key_alt = …;
int g_components_user_root_key = …;
}
bool PathProvider(int key, base::FilePath* result) { … }
void RegisterPathProvider(int components_preinstalled_root_key,
int components_preinstalled_root_key_alt,
int components_user_root_key) { … }
}