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

Unified Diff: content/browser/child_process_launcher.cc

Issue 1147213004: Store and load icudtl.dat directly from the apk rather than extracting on start-up (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load-from-apk
Patch Set: Keep extracting for components/ Created 5 years, 6 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: content/browser/child_process_launcher.cc
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
index 0c461f422bd32aef5350a9fd005d354618bad319..c2800ff7e48339517ed03edd63b2ebdc682f5e47 100644
--- a/content/browser/child_process_launcher.cc
+++ b/content/browser/child_process_launcher.cc
@@ -147,7 +147,7 @@ void LaunchOnLauncherThread(const NotifyCallback& callback,
CHECK(!cmd_line->HasSwitch(switches::kSingleProcess));
std::map<int, base::MemoryMappedFile::Region> regions;
GetContentClient()->browser()->GetAdditionalMappedFilesForChildProcess(
- *cmd_line, child_process_id, files_to_register.get());
+ *cmd_line, child_process_id, files_to_register.get(), &regions);
StartChildProcess(
cmd_line->argv(), child_process_id, files_to_register.Pass(), regions,

Powered by Google App Engine
This is Rietveld 408576698