| Index: chrome/browser/lifetime/application_lifetime.cc
|
| diff --git a/chrome/browser/lifetime/application_lifetime.cc b/chrome/browser/lifetime/application_lifetime.cc
|
| index 0dffb7de3f30afbb8b5badc6f4ecbfdcefa75c50..8af4ecd15a3a58a860af699f309974c187a74ab3 100644
|
| --- a/chrome/browser/lifetime/application_lifetime.cc
|
| +++ b/chrome/browser/lifetime/application_lifetime.cc
|
| @@ -300,7 +300,7 @@ void SessionEnding() {
|
| content::ImmediateShutdownAndExitProcess();
|
| }
|
|
|
| -void StartKeepAlive() {
|
| +void IncrementKeepAliveCount() {
|
| // Increment the browser process refcount as long as we're keeping the
|
| // application alive.
|
| if (!WillKeepAlive())
|
| @@ -308,7 +308,7 @@ void StartKeepAlive() {
|
| ++g_keep_alive_count;
|
| }
|
|
|
| -void EndKeepAlive() {
|
| +void DecrementKeepAliveCount() {
|
| DCHECK_GT(g_keep_alive_count, 0);
|
| --g_keep_alive_count;
|
|
|
|
|