blob: 5d3dea610eb32d851908c9a415543248e22c6631 [file] [log] [blame]
// Copyright 2013 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.infobar;
/**
* A listener to interact with the different subpanels of the translate infobar.
*/
public interface SubPanelListener {
/**
* Called whenever a sub panel is closed.
* @param action one of the action types in {@code InfoBar}
*/
public void onPanelClosed(int action);
/**
* Called to indicate that the current options should be persisted.
*/
public void onOptionsChanged();
}