Commit e981c21c authored by jam's avatar jam Committed by Commit bot

Disable app shutdown logic for now while I fix the network_service apptests.

BUG=484234
TBR=msw@chromium.org

Review URL: https://codereview.chromium.org/1148613004

Cr-Commit-Position: refs/heads/master@{#330606}
parent 6473c592
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment