Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2022 The Chromium Authors |
Gabriel Charette | 1d90fe5 | 2022-02-03 18:30:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROME_BROWSER_PROCESS_SINGLETON_INTERNAL_H_ |
| 6 | #define CHROME_BROWSER_PROCESS_SINGLETON_INTERNAL_H_ |
| 7 | |
| 8 | #include "chrome/browser/process_singleton.h" |
| 9 | |
| 10 | namespace internal { |
| 11 | |
| 12 | void SendRemoteProcessInteractionResultHistogram( |
| 13 | ProcessSingleton::RemoteProcessInteractionResult result); |
| 14 | |
| 15 | void SendRemoteHungProcessTerminateReasonHistogram( |
| 16 | ProcessSingleton::RemoteHungProcessTerminateReason reason); |
| 17 | |
| 18 | } // namespace internal |
| 19 | |
| 20 | #endif // CHROME_BROWSER_PROCESS_SINGLETON_INTERNAL_H_ |