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

Unified Diff: mojo/application/app_lifetime_helper.cc

Issue 1148613004: Disable app shutdown logic for now while I fix the network_service apptests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/application/app_lifetime_helper.cc
diff --git a/mojo/application/app_lifetime_helper.cc b/mojo/application/app_lifetime_helper.cc
index cf0f5326f404352788f608945cde65e2e19d188f..7859454a18d47306ded26538a8205ea9e6b4ee9c 100644
--- a/mojo/application/app_lifetime_helper.cc
+++ b/mojo/application/app_lifetime_helper.cc
@@ -81,8 +81,10 @@ void AppLifetimeHelper::AddRef() {
}
void AppLifetimeHelper::Release() {
- if (!--ref_count_)
- ApplicationImpl::Terminate();
+ if (!--ref_count_) {
+ // Disabled until network_service tests pass again http://crbug.com/484234
+ //ApplicationImpl::Terminate();
+ }
}
} // namespace mojo
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698