blob: 0812ea2d111570421150870ebcff0202b71d08d4 [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.incognito;
/**
* Implemented by entities that may host incognito tabs.
*/
public interface IncognitoTabHost {
/** Whether has any incognito tabs at the moment. */
boolean hasIncognitoTabs();
/** Close all incognito tabs. */
void closeAllIncognitoTabs();
}