blob: 6df3d2ed2d3ccdd24af93c970b8e42f77cac4c30 [file] [log] [blame]
Avi Drissman4e1b7bc32022-09-15 14:03:501// Copyright 2021 The Chromium Authors
Oksana Zhuravlova3a4e4212021-02-17 21:51:332// 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
9namespace content {
10
11void OnBrowserVisibilityChanged(bool visible) {
12 ProcessVisibilityTracker::GetInstance()->OnProcessVisibilityChanged(visible);
13}
14
15} // namespace content