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

Unified Diff: content/browser/android/child_process_launcher_android.cc

Issue 2705133002: android: Allow registering multiple CreationParams (Closed)
Patch Set: rebase Created 3 years, 10 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/android/child_process_launcher_android.cc
diff --git a/content/browser/android/child_process_launcher_android.cc b/content/browser/android/child_process_launcher_android.cc
index bd16a7caa4db762ea0a0e8360240daba1bced370..43b1396c7291eef31108c2a916bcd1b309d3cb80 100644
--- a/content/browser/android/child_process_launcher_android.cc
+++ b/content/browser/android/child_process_launcher_android.cc
@@ -92,9 +92,10 @@ void StartChildProcess(
}
}
+ constexpr int param_key = 0; // TODO(boliu): Use this.
Java_ChildProcessLauncher_start(
- env, base::android::GetApplicationContext(), j_argv, child_process_id,
- j_file_infos,
+ env, base::android::GetApplicationContext(), param_key, j_argv,
+ child_process_id, j_file_infos,
reinterpret_cast<intptr_t>(new StartChildProcessCallback(callback)));
}

Powered by Google App Engine
This is Rietveld 408576698