OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/common/content_paths.h" | 5 #include "content/public/common/content_paths.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/mac/bundle_locations.h" | 8 #include "base/mac/bundle_locations.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 | 10 |
11 namespace content { | 11 namespace content { |
12 | 12 |
13 bool PathProvider(int key, base::FilePath* result) { | 13 bool PathProvider(int key, base::FilePath* result) { |
14 switch (key) { | 14 switch (key) { |
15 case CHILD_PROCESS_EXE: | 15 case CHILD_PROCESS_EXE: |
16 return PathService::Get(base::FILE_EXE, result); | 16 return PathService::Get(base::FILE_EXE, result); |
17 case DIR_TEST_DATA: { | 17 case DIR_TEST_DATA: { |
18 base::FilePath cur; | 18 base::FilePath cur; |
19 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) | 19 if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur)) |
20 return false; | 20 return false; |
21 cur = cur.Append(FILE_PATH_LITERAL("content")); | 21 cur = cur.Append(FILE_PATH_LITERAL("content")); |
22 cur = cur.Append(FILE_PATH_LITERAL("test")); | 22 cur = cur.Append(FILE_PATH_LITERAL("test")); |
23 cur = cur.Append(FILE_PATH_LITERAL("data")); | 23 cur = cur.Append(FILE_PATH_LITERAL("data")); |
24 if (!file_util::PathExists(cur)) // we don't want to create this | 24 if (!base::PathExists(cur)) // we don't want to create this |
25 return false; | 25 return false; |
26 | 26 |
27 *result = cur; | 27 *result = cur; |
28 return true; | 28 return true; |
29 break; | 29 break; |
30 } | 30 } |
31 case DIR_MEDIA_LIBS: { | 31 case DIR_MEDIA_LIBS: { |
32 #if defined(OS_MACOSX) | 32 #if defined(OS_MACOSX) |
33 *result = base::mac::FrameworkBundlePath(); | 33 *result = base::mac::FrameworkBundlePath(); |
34 *result = result->Append("Libraries"); | 34 *result = result->Append("Libraries"); |
35 return true; | 35 return true; |
36 #else | 36 #else |
37 return PathService::Get(base::DIR_MODULE, result); | 37 return PathService::Get(base::DIR_MODULE, result); |
38 #endif | 38 #endif |
39 } | 39 } |
40 default: | 40 default: |
41 return false; | 41 return false; |
42 } | 42 } |
43 | 43 |
44 return false; | 44 return false; |
45 } | 45 } |
46 | 46 |
47 // This cannot be done as a static initializer sadly since Visual Studio will | 47 // This cannot be done as a static initializer sadly since Visual Studio will |
48 // eliminate this object file if there is no direct entry point into it. | 48 // eliminate this object file if there is no direct entry point into it. |
49 void RegisterPathProvider() { | 49 void RegisterPathProvider() { |
50 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); | 50 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); |
51 } | 51 } |
52 | 52 |
53 } // namespace content | 53 } // namespace content |
OLD | NEW |