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

Unified Diff: content/browser/child_process_launcher.cc

Issue 2075283003: Remove natives_blob.bin's arch dependence. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 3e7015c8b6759269ba67873b8228dad52b02591b..5d7a304e67e0edc18048df5a252ce10f7e033481 100644
--- a/content/browser/child_process_launcher.cc
+++ b/content/browser/child_process_launcher.cc
@@ -198,11 +198,8 @@ void LaunchOnLauncherThread(const NotifyCallback& callback,
}
};
maybe_register(
- kV8NativesDataDescriptor32,
- gin::V8Initializer::GetOpenNativesFileForChildProcesses(&region, true));
- maybe_register(
- kV8NativesDataDescriptor64,
- gin::V8Initializer::GetOpenNativesFileForChildProcesses(&region, false));
+ kV8NativesDataDescriptor,
+ gin::V8Initializer::GetOpenNativesFileForChildProcesses(&region));
maybe_register(
kV8SnapshotDataDescriptor32,
gin::V8Initializer::GetOpenSnapshotFileForChildProcesses(&region, true));

Powered by Google App Engine
This is Rietveld 408576698