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

Unified Diff: content/public/android/java/src/org/chromium/content/app/SandboxedProcessService.java

Issue 11428056: Fix the crash when the SandboxedProcessService is destroyed through onDestroy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Using MessageLoop::current() Created 8 years, 1 month 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 | « content/app/android/sandboxed_process_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/app/SandboxedProcessService.java
diff --git a/content/public/android/java/src/org/chromium/content/app/SandboxedProcessService.java b/content/public/android/java/src/org/chromium/content/app/SandboxedProcessService.java
index 5dbee0d0611eda76e18aeda35b4593044502b3b2..c131ff735e6064811f4fbe2f6451a9eff25dafc2 100644
--- a/content/public/android/java/src/org/chromium/content/app/SandboxedProcessService.java
+++ b/content/public/android/java/src/org/chromium/content/app/SandboxedProcessService.java
@@ -166,13 +166,9 @@ public class SandboxedProcessService extends Service {
} catch (InterruptedException e) {
}
}
-
- // This is not synchronized with the main thread in any way, but this is analogous
- // to how desktop chrome terminates processes using SIGTERM. The mSandboxMainThread
- // may run briefly before this is executed, but will eventually get a channel error
- // and similarly commit suicide via SuicideOnChannelErrorFilter().
- // TODO(tedbo): Why doesn't the activity manager SIGTERM/SIGKILL this service process?
- nativeExitSandboxedProcess();
+ // Try to shutdown the SandboxMainThread gracefully, but it might not
+ // have chance to exit normally.
+ nativeShutdownSandboxMainThread();
}
@Override
@@ -254,4 +250,6 @@ public class SandboxedProcessService extends Service {
* Force the sandboxed process to exit.
*/
private static native void nativeExitSandboxedProcess();
+
+ private native void nativeShutdownSandboxMainThread();
}
« no previous file with comments | « content/app/android/sandboxed_process_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698