1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19

content / public / android / java / src / org / chromium / content_public / browser / SiteZoomInfo.java [blame]

// Copyright 2023 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.content_public.browser;

import org.chromium.build.annotations.UsedByReflection;

/** Represents the zoom information for a host. */
@UsedByReflection("host_zoom_map_impl.cc")
public final class SiteZoomInfo {
    public final String host;
    public final double zoomLevel;

    public SiteZoomInfo(String host, double zoomLevel) {
        this.host = host;
        this.zoomLevel = zoomLevel;
    }
}