Avi Drissman | 4e1b7bc3 | 2022-09-15 14:03:50 | [diff] [blame] | 1 | // Copyright 2021 The Chromium Authors |
Oksana Zhuravlova | 3a4e421 | 2021-02-17 21:51:33 | [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 | #include "content/public/browser/process_visibility_util.h" |
| 6 | |
| 7 | #include "content/common/process_visibility_tracker.h" |
| 8 | |
| 9 | namespace content { |
| 10 | |
| 11 | void OnBrowserVisibilityChanged(bool visible) { |
| 12 | ProcessVisibilityTracker::GetInstance()->OnProcessVisibilityChanged(visible); |
| 13 | } |
| 14 | |
| 15 | } // namespace content |