1 // Copyright (c) 2012 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 "content/public/common/content_paths.h"
7 #include "base/file_util.h"
8 #include "base/mac/bundle_locations.h"
9 #include "base/path_service.h"
13 bool PathProvider(int key
, base::FilePath
* result
) {
15 case CHILD_PROCESS_EXE
:
16 return PathService::Get(base::FILE_EXE
, result
);
19 if (!PathService::Get(base::DIR_SOURCE_ROOT
, &cur
))
21 cur
= cur
.Append(FILE_PATH_LITERAL("content"));
22 cur
= cur
.Append(FILE_PATH_LITERAL("test"));
23 cur
= cur
.Append(FILE_PATH_LITERAL("data"));
24 if (!base::PathExists(cur
)) // we don't want to create this
30 case DIR_MEDIA_LIBS
: {
31 #if defined(OS_MACOSX)
32 *result
= base::mac::FrameworkBundlePath();
33 *result
= result
->Append("Libraries");
36 return PathService::Get(base::DIR_MODULE
, result
);
44 // This cannot be done as a static initializer sadly since Visual Studio will
45 // eliminate this object file if there is no direct entry point into it.
46 void RegisterPathProvider() {
47 PathService::RegisterProvider(PathProvider
, PATH_START
, PATH_END
);
50 } // namespace content