diff options
Diffstat (limited to 'chrome/profile_import/profile_import_thread.cc')
-rw-r--r-- | chrome/profile_import/profile_import_thread.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/profile_import/profile_import_thread.cc b/chrome/profile_import/profile_import_thread.cc index 6f097b3..e9ba2a5 100644 --- a/chrome/profile_import/profile_import_thread.cc +++ b/chrome/profile_import/profile_import_thread.cc @@ -105,8 +105,7 @@ void ProfileImportThread::NotifyEnded() { } void ProfileImportThread::NotifyHistoryImportReady( - const std::vector<history::URLRow> &rows, - history::VisitSource visit_source) { + const std::vector<history::URLRow> &rows) { Send(new ProfileImportProcessHostMsg_NotifyHistoryImportStart(rows.size())); std::vector<history::URLRow>::const_iterator it; @@ -118,8 +117,7 @@ void ProfileImportThread::NotifyHistoryImportReady( it + kNumHistoryRowsToSend : rows.end(); row_group.assign(it, end_group); - Send(new ProfileImportProcessHostMsg_NotifyHistoryImportGroup(row_group, - visit_source)); + Send(new ProfileImportProcessHostMsg_NotifyHistoryImportGroup(row_group)); } } |