// 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. #include "base/test/scoped_path_override.h" #include <ostream> #include "base/check.h" #include "base/path_service.h" namespace base { ScopedPathOverride::ScopedPathOverride(int key) : … { … } ScopedPathOverride::ScopedPathOverride(int key, const base::FilePath& dir) : … { … } ScopedPathOverride::ScopedPathOverride(int key, const FilePath& path, bool is_absolute, bool create) : … { … } void ScopedPathOverride::SaveOriginal() { … } ScopedPathOverride::~ScopedPathOverride() { … } } // namespace base