| Index: chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabModel.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabModel.java b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabModel.java
|
| index 565cfc041fad14c19557cb07b68c81869d3cde68..a2ffb6f64b7ae3eb2bd0d86852c85fe8ef97cfba 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabModel.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/TabModel.java
|
| @@ -88,8 +88,10 @@ public interface TabModel extends TabList {
|
| * of not closing all tabs and delegating the closure to another class.
|
| * @param allowDelegation true iff the model may delegate the close all request.
|
| * false iff the model must close all tabs.
|
| + * @param uponExit true iff the tabs are being closed upon application exit (after user presses
|
| + * the system back button)
|
| */
|
| - public void closeAllTabs(boolean allowDelegation);
|
| + public void closeAllTabs(boolean allowDelegation, boolean uponExit);
|
|
|
| /**
|
| * @return Whether or not this model supports pending closures.
|
|
|