| 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
|
|
|