| Index: chrome/browser/ui/browser_commands.cc
|
| diff --git a/chrome/browser/ui/browser_commands.cc b/chrome/browser/ui/browser_commands.cc
|
| index 6b80e387fa4c16198ca808cacb3ba19b4536e9a6..d718bdab2415d9a3d3e952fbc06b7b8e347ee99b 100644
|
| --- a/chrome/browser/ui/browser_commands.cc
|
| +++ b/chrome/browser/ui/browser_commands.cc
|
| @@ -364,12 +364,11 @@ Browser* OpenEmptyWindow(Profile* profile) {
|
| return browser;
|
| }
|
|
|
| -void OpenWindowWithRestoredTabs(Profile* profile,
|
| - HostDesktopType host_desktop_type) {
|
| +void OpenWindowWithRestoredTabs(Profile* profile) {
|
| sessions::TabRestoreService* service =
|
| TabRestoreServiceFactory::GetForProfile(profile);
|
| if (service)
|
| - service->RestoreMostRecentEntry(NULL, host_desktop_type);
|
| + service->RestoreMostRecentEntry(nullptr);
|
| }
|
|
|
| void OpenURLOffTheRecord(Profile* profile,
|
|
|