chromium/chrome/browser/ui/android/fakepdf/java/src/org/chromium/chrome/browser/fakepdf/PdfDocument.java

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.chrome.browser.fakepdf;

/** Fake PDF viewer API. Will be removed once real APIs become available. */
public class PdfDocument {
    private boolean mSearchVisible;

    public PdfDocument() {}

    public boolean isSearchVisible() {
        return mSearchVisible;
    }

    public void setIsSearchVisible(boolean value) {
        mSearchVisible = value;
    }
}