1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/base_paths.h"
7 #include "base/file_util.h"
8 #include "base/files/file_path.h"
9 #include "base/path_service.h"
13 bool PathProvider(int key
, FilePath
* result
) {
14 // NOTE: DIR_CURRENT is a special case in PathService::Get
19 PathService::Get(FILE_EXE
, &cur
);
23 PathService::Get(FILE_MODULE
, &cur
);
27 if (!file_util::GetTempDir(&cur
))
31 if (!PathService::Get(DIR_SOURCE_ROOT
, &cur
))
33 cur
= cur
.Append(FILE_PATH_LITERAL("base"));
34 cur
= cur
.Append(FILE_PATH_LITERAL("test"));
35 cur
= cur
.Append(FILE_PATH_LITERAL("data"));
36 if (!file_util::PathExists(cur
)) // We don't want to create this.