blob: 0d53f33eaa7f227767011843c76d8e23d964c644 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module blink.mojom;
// This enum represents the visibility state of a page. The state can
// transition from one to another, not necessarily in the following order.
enum PageVisibilityState {
// Page is shown.
kVisible,
// Page is hidden.
kHidden,
// Page is prerendering.
kHiddenButPainting,
};