| Index: content/shell/shell_content_browser_client.cc
|
| diff --git a/content/shell/shell_content_browser_client.cc b/content/shell/shell_content_browser_client.cc
|
| index ebed7514954e607a42952337aa65c2eed6701ac7..abc24d1ff7cc75674194e762ff06d3788016fa3a 100644
|
| --- a/content/shell/shell_content_browser_client.cc
|
| +++ b/content/shell/shell_content_browser_client.cc
|
| @@ -34,8 +34,8 @@ namespace content {
|
|
|
| namespace {
|
|
|
| -FilePath GetWebKitRootDirFilePath() {
|
| - FilePath base_path;
|
| +base::FilePath GetWebKitRootDirFilePath() {
|
| + base::FilePath base_path;
|
| PathService::Get(base::DIR_SOURCE_ROOT, &base_path);
|
| if (file_util::PathExists(
|
| base_path.Append(FILE_PATH_LITERAL("third_party/WebKit")))) {
|
| @@ -135,7 +135,7 @@ void ShellContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
|
| int child_process_id,
|
| std::vector<content::FileDescriptorInfo>* mappings) {
|
| int flags = base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ;
|
| - FilePath pak_file;
|
| + base::FilePath pak_file;
|
| bool r = PathService::Get(base::DIR_ANDROID_APP_DATA, &pak_file);
|
| CHECK(r);
|
| pak_file = pak_file.Append(FILE_PATH_LITERAL("paks"));
|
|
|