| Index: chrome/browser/sync/glue/session_change_processor.cc
|
| ===================================================================
|
| --- chrome/browser/sync/glue/session_change_processor.cc (revision 154486)
|
| +++ chrome/browser/sync/glue/session_change_processor.cc (working copy)
|
| @@ -140,9 +140,8 @@
|
| case chrome::NOTIFICATION_TAB_CONTENTS_DESTROYED: {
|
| TabContents* tab_contents = content::Source<TabContents>(source).ptr();
|
| SyncedTabDelegate* tab = tab_contents->synced_tab_delegate();
|
| - if (!tab || tab->profile() != profile_) {
|
| + if (!tab || tab->profile() != profile_)
|
| return;
|
| - }
|
| modified_tabs.push_back(tab);
|
| DVLOG(1) << "Received NOTIFICATION_TAB_CONTENTS_DESTROYED for profile "
|
| << profile_;
|
|
|