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/files/file_path.h"
8 #include "base/files/file_util.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
18 PathService::Get(FILE_EXE
, result
);
19 *result
= result
->DirName();
22 PathService::Get(FILE_MODULE
, result
);
23 *result
= result
->DirName();
26 if (!GetTempDir(result
))
30 *result
= GetHomeDir();
33 if (!PathService::Get(DIR_SOURCE_ROOT
, result
))
35 *result
= result
->Append(FILE_PATH_LITERAL("base"));
36 *result
= result
->Append(FILE_PATH_LITERAL("test"));
37 *result
= result
->Append(FILE_PATH_LITERAL("data"));
38 if (!PathExists(*result
)) // We don't want to create this.