Searched defs:newTab (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DTabControl.java633 * Put the current tab in the background and set newTab as the current tab.
634 * @param newTab The new tab. If newTab is null, the current tab is not
637 boolean setCurrentTab(Tab newTab) { argument
638 return setCurrentTab(newTab, false);
642 * If force is true, this method skips the check for newTab == current.
644 private boolean setCurrentTab(Tab newTab, boolean force) { argument
646 if (current == newTab && !force) {
653 if (newTab == null) {
657 // Move the newTab t
[all...]

Completed in 246 milliseconds