| Index: chrome/browser/chrome_browser_main_posix.cc
|
| diff --git a/chrome/browser/chrome_browser_main_posix.cc b/chrome/browser/chrome_browser_main_posix.cc
|
| index 2f2462bccacab3526cbe3d9d62870ed7862cfa58..4ae63979aa6f1a00e05e643507f56ebf9555fc7a 100644
|
| --- a/chrome/browser/chrome_browser_main_posix.cc
|
| +++ b/chrome/browser/chrome_browser_main_posix.cc
|
| @@ -96,7 +96,7 @@ class ExitHandler {
|
| ~ExitHandler();
|
|
|
| // Called when a session restore has finished.
|
| - void OnSessionRestoreDone();
|
| + void OnSessionRestoreDone(int num_tabs_restored);
|
|
|
| // Does the appropriate call to Exit.
|
| static void Exit();
|
| @@ -133,7 +133,7 @@ ExitHandler::ExitHandler() {
|
| ExitHandler::~ExitHandler() {
|
| }
|
|
|
| -void ExitHandler::OnSessionRestoreDone() {
|
| +void ExitHandler::OnSessionRestoreDone(int /* num_tabs */) {
|
| if (!SessionRestore::IsRestoringSynchronously()) {
|
| // At this point the message loop may not be running (meaning we haven't
|
| // gotten through browser startup, but are close). Post the task to at which
|
|
|