| Index: components/resource_provider/file_utils.cc
|
| diff --git a/components/resource_provider/file_utils.cc b/components/resource_provider/file_utils.cc
|
| index 9c3948eccef1b48cf23845948f82c0ef271cfcf1..b8063da1c7221848428295deae3f5b293b9c269b 100644
|
| --- a/components/resource_provider/file_utils.cc
|
| +++ b/components/resource_provider/file_utils.cc
|
| @@ -69,7 +69,9 @@ base::FilePath GetPathForApplicationName(const std::string& application_name) {
|
| #else
|
| PathService::Get(base::DIR_EXE, &base_path);
|
| #endif
|
| - return base_path.AppendASCII(path).AppendASCII("resources");
|
| + // TODO(beng): this won't handle user-specific components.
|
| + return base_path.AppendASCII("Mojo Applications").AppendASCII(path).
|
| + AppendASCII("resources");
|
| }
|
|
|
| base::FilePath GetPathForResourceNamed(const base::FilePath& app_path,
|
|
|