Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 22339020: Remove chrome.pak references, build resources into resources.pak (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698