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_path.h"
8 #include "base/file_util.h"
9 #include "base/path_service.h"
13 bool PathProvider(int key
, FilePath
* result
) {
14 // NOTE: DIR_CURRENT is a special cased in PathService::Get
19 PathService::Get(base::FILE_EXE
, &cur
);
22 case base::DIR_MODULE
:
23 PathService::Get(base::FILE_MODULE
, &cur
);
27 if (!file_util::GetTempDir(&cur
))