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

Unified Diff: android_webview/lib/main/aw_main_delegate.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
« no previous file with comments | « no previous file | build_overrides/v8.gni » ('j') | content/public/common/content_descriptors.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/main/aw_main_delegate.cc
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index ce1d576cfc5d879fa65455bcedc72529702b5816..47bc22d173ca917495297cb1ace10f808a00e1b4 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -121,15 +121,11 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
// Browser process (no type specified).
base::android::RegisterApkAssetWithGlobalDescriptors(
- kV8NativesDataDescriptor32,
- gin::V8Initializer::GetNativesFilePath(true).AsUTF8Unsafe());
+ kV8NativesDataDescriptor,
+ gin::V8Initializer::GetNativesFilePath().AsUTF8Unsafe());
base::android::RegisterApkAssetWithGlobalDescriptors(
kV8SnapshotDataDescriptor32,
gin::V8Initializer::GetSnapshotFilePath(true).AsUTF8Unsafe());
-
- base::android::RegisterApkAssetWithGlobalDescriptors(
- kV8NativesDataDescriptor64,
- gin::V8Initializer::GetNativesFilePath(false).AsUTF8Unsafe());
base::android::RegisterApkAssetWithGlobalDescriptors(
kV8SnapshotDataDescriptor64,
gin::V8Initializer::GetSnapshotFilePath(false).AsUTF8Unsafe());
« no previous file with comments | « no previous file | build_overrides/v8.gni » ('j') | content/public/common/content_descriptors.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698