chromium/components/component_updater/component_updater_paths.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// This key gives the root directory of all the component installations.
int g_components_preinstalled_root_key =;
int g_components_preinstalled_root_key_alt =;
int g_components_user_root_key =;

}  // namespace

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) {}

}  // namespace component_updater