Chromium Code Reviews| 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..61d454549d220c2bc0a513852dea10af63b89d49 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); |
|
sky
2015/02/04 21:22:11
declaration and definition should both have names
Simon Que
2015/02/05 00:16:01
Done.
|
| // 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 |