root/chrome/android/java/src/org/chromium/chrome/browser/infobar/SubPanelListener.java

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. onPanelClosed
  2. onOptionsChanged

// 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();
}

/* [<][>][^][v][top][bottom][index][help] */