 Chromium Code Reviews
 Chromium Code Reviews Issue 1778873002:
  Replace Increment/DecrementKeepAliveCount by ScopedKeepAlives  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@KAObserver
    
  
    Issue 1778873002:
  Replace Increment/DecrementKeepAliveCount by ScopedKeepAlives  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@KAObserver| Index: chrome/browser/lifetime/application_lifetime_aura.cc | 
| diff --git a/chrome/browser/lifetime/application_lifetime_aura.cc b/chrome/browser/lifetime/application_lifetime_aura.cc | 
| index 12c061388fc069fb622a6b6afef0266e5b5b712d..fd970ca3ac609c03148b9ac1b757780984460941 100644 | 
| --- a/chrome/browser/lifetime/application_lifetime_aura.cc | 
| +++ b/chrome/browser/lifetime/application_lifetime_aura.cc | 
| @@ -7,6 +7,7 @@ | 
| #include "base/command_line.h" | 
| #include "build/build_config.h" | 
| #include "chrome/browser/browser_process.h" | 
| +#include "chrome/browser/browser_process_platform_part.h" | 
| #include "chrome/browser/notifications/notification_ui_manager.h" | 
| #include "chrome/common/chrome_switches.h" | 
| #include "ui/aura/client/capture_client.h" | 
| @@ -40,8 +41,8 @@ void HandleAppExitingForPlatform() { | 
| #if defined(OS_CHROMEOS) | 
| if (!base::CommandLine::ForCurrentProcess()->HasSwitch( | 
| switches::kDisableZeroBrowsersOpenForTests)) { | 
| - // App is exiting, call DecrementKeepAliveCount() on behalf of Aura Shell. | 
| - DecrementKeepAliveCount(); | 
| 
dgn
2016/03/09 23:49:23
Paired with the call in ash_init.cc
 | 
| + // App is exiting, release the keep alive on behalf of Aura Shell. | 
| + g_browser_process->platform_part()->UnregisterKeepAlive(); | 
| // Make sure we have notified the session manager that we are exiting. | 
| // This might be called from FastShutdown() or CloseAllBrowsers(), but not | 
| // if something prevents a browser from closing before SetTryingToQuit() |