blob: d2599f6264cf6c55c64016eb990295ee5427be54 [file] [log] [blame]
// Copyright 2018 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.
package org.chromium.chrome.browser.customtabs.dynamicmodule;
/**
* Class to keep constants specific to the CCT dynamic module.
*/
public class DynamicModuleConstants {
/**
* The module version when {@link IActivityDelegate#onNavigationEvent} is introduced.
*/
public static final int ON_NAVIGATION_EVENT_MODULE_API_VERSION = 4;
/**
* The module version when {@link IActivityDelegate#onBackPressedAsync} is introduced.
*/
public static final int ON_BACK_PRESSED_ASYNC_API_VERSION = 2;
}