// Copyright 2019 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.customtabs;
import org.chromium.chrome.browser.browserservices.ui.splashscreen.SplashController;
import org.chromium.chrome.browser.browserservices.ui.splashscreen.trustedwebactivity.TwaSplashController;
/**
* A CustomTabActivity that has a translucent theme. This is used to ensure seamless transition of
* a splash screen from client app to a Trusted Web Activity, see {@link SplashController}. This is
* also used to make the partial screen custom tab translucent. see {@link
* PartialCustomTabBottomSheetStrategy}.
*
* This class is intended to be empty. Try to avoid adding code here, put it in
* {@link TwaSplashController} or other specialized class.
*/
public class TranslucentCustomTabActivity extends CustomTabActivity {}