// 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. #include "chrome/browser/lifetime/termination_notification.h" #include "base/no_destructor.h" #include "build/chromeos_buildflags.h" #include "content/public/browser/browser_thread.h" namespace browser_shutdown { namespace { base::OnceClosureList& GetAppTerminatingCallbackList() { … } } // namespace base::CallbackListSubscription AddAppTerminatingCallback( base::OnceClosure app_terminating_callback) { … } void NotifyAppTerminating() { … } } // namespace browser_shutdown