| Index: chrome/browser/apps/scoped_keep_alive.cc
|
| diff --git a/chrome/browser/apps/scoped_keep_alive.cc b/chrome/browser/apps/scoped_keep_alive.cc
|
| index 586a47448a0eff3f57996632c90ddeba5f20a39a..c934dd435572209bb5ee99f73793940efcd944fa 100644
|
| --- a/chrome/browser/apps/scoped_keep_alive.cc
|
| +++ b/chrome/browser/apps/scoped_keep_alive.cc
|
| @@ -5,15 +5,15 @@
|
| #include "chrome/browser/apps/scoped_keep_alive.h"
|
|
|
| #include "chrome/browser/browser_process.h"
|
| -#include "chrome/browser/lifetime/application_lifetime.h"
|
| +#include "chrome/browser/lifetime/browser_keep_alive.h"
|
|
|
| ScopedKeepAlive::ScopedKeepAlive() {
|
| // Allow ScopedKeepAlive to be used in unit tests.
|
| if (g_browser_process)
|
| - chrome::IncrementKeepAliveCount();
|
| + browser_lifetime::IncrementKeepAliveCount();
|
| }
|
|
|
| ScopedKeepAlive::~ScopedKeepAlive() {
|
| if (g_browser_process)
|
| - chrome::DecrementKeepAliveCount();
|
| + browser_lifetime::DecrementKeepAliveCount();
|
| }
|
|
|