chromium/components/zoom/android/java/src/org/chromium/components/zoom/ZoomConstants.java

// 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.components.zoom;

/**
 * Holds all constants related zooming in/out WebContents.
 * <p>This class uses the term 'zoom' for legacy reasons, but relates
 * to what chrome calls the 'page scale factor'.
 */
public class ZoomConstants {
    public static final float ZOOM_IN_DELTA = 1.25f;
    public static final float ZOOM_OUT_DELTA = .8f;
    public static final float ZOOM_RESET_DELTA = -1.f; // Negative value to reset zoom level.
}