// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_LIFETIME_TERMINATION_NOTIFICATION_H_ #define CHROME_BROWSER_LIFETIME_TERMINATION_NOTIFICATION_H_ #include "base/callback_list.h" #include "build/chromeos_buildflags.h" namespace browser_shutdown { // Registers a callback that will be invoked when the application is terminating // (the last browser window has shutdown as part of an explicit user-initiated // exit, or the user closed the last browser window on Windows/Linux and there // are no BackgroundContents keeping the browser running). base::CallbackListSubscription AddAppTerminatingCallback( base::OnceClosure app_terminating_callback); // Emits APP_TERMINATING notification. It is guaranteed that the // notification is sent only once. void NotifyAppTerminating(); } // namespace browser_shutdown #endif // CHROME_BROWSER_LIFETIME_TERMINATION_NOTIFICATION_H_