| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 22947f0b45331d9aa91bcfe8e2b340cb58cbb93e..65f75e6aeff1860dd2614bbdcb9ef1a92d40f709 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -2466,13 +2466,6 @@ void ChromeContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
|
| DCHECK(!data_path.empty());
|
|
|
| int flags = base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ;
|
| - base::FilePath chrome_pak = data_path.AppendASCII("chrome.pak");
|
| - base::PlatformFile f =
|
| - base::CreatePlatformFile(chrome_pak, flags, NULL, NULL);
|
| - DCHECK(f != base::kInvalidPlatformFileValue);
|
| - mappings->push_back(FileDescriptorInfo(kAndroidChromePakDescriptor,
|
| - FileDescriptor(f, true)));
|
| -
|
| base::FilePath chrome_resources_pak =
|
| data_path.AppendASCII("chrome_100_percent.pak");
|
| f = base::CreatePlatformFile(chrome_resources_pak, flags, NULL, NULL);
|
|
|