diff options
Diffstat (limited to 'src/com/android/browser/Controller.java')
-rw-r--r-- | src/com/android/browser/Controller.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/browser/Controller.java b/src/com/android/browser/Controller.java index e089f5d..1f5c8f0 100644 --- a/src/com/android/browser/Controller.java +++ b/src/com/android/browser/Controller.java @@ -616,7 +616,7 @@ public class Controller mCrashRecoveryHandler.clearState(); } - void onSaveInstanceState(Bundle outState) { + void onSaveInstanceState(Bundle outState, boolean saveImages) { // the default implementation requires each view to have an id. As the // browser handles the state itself and it doesn't use id for the views, // don't call the default implementation. Otherwise it will trigger the @@ -624,7 +624,7 @@ public class Controller // focused view XXX has no id". // Save all the tabs - mTabControl.saveState(outState); + mTabControl.saveState(outState, saveImages); // Save time so that we know how old incognito tabs (if any) are. outState.putSerializable("lastActiveDate", Calendar.getInstance()); } |