// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_PATH_SERVICE_H_ #define BASE_PATH_SERVICE_H_ #include "base/base_export.h" #include "base/base_paths.h" #include "base/gtest_prod_util.h" #include "build/build_config.h" namespace base { class FilePath; class ScopedPathOverride; // The path service is a global table mapping keys to file system paths. It is // OK to use this service from multiple threads. // class BASE_EXPORT PathService { … }; } // namespace base #endif // BASE_PATH_SERVICE_H_