Bug 993062 - Remove the definition of showRemoteTabs() method in BrowserApp.java. Remove the declearation of showTabs() method and showRemoteTabs() in GeckoApp.java. r=margaret

This commit is contained in:
Zack Liu 2014-04-15 13:13:00 +02:00
parent 8e7a615db6
commit 098be40013
2 changed files with 3 additions and 13 deletions

View File

@ -1286,16 +1286,10 @@ abstract public class BrowserApp extends GeckoApp
public void showPrivateTabs() {
showTabs(TabsPanel.Panel.PRIVATE_TABS);
}
@Override
public void showRemoteTabs() {
showTabs(TabsPanel.Panel.REMOTE_TABS);
}
/**
* Ensure the TabsPanel view is properly inflated and returns
* true when the view has been inflated, false otherwise.
*/
* Ensure the TabsPanel view is properly inflated and returns
* true when the view has been inflated, false otherwise.
*/
private boolean ensureTabsPanelExists() {
if (mTabsPanel != null) {
return false;

View File

@ -533,10 +533,6 @@ public abstract class GeckoApp
public void showPrivateTabs() { }
public void showRemoteTabs() { }
private void showTabs(TabsPanel.Panel panel) { }
public void hideTabs() { }
/**