| Index: components/history/core/browser/thumbnail_database.cc
|
| diff --git a/components/history/core/browser/thumbnail_database.cc b/components/history/core/browser/thumbnail_database.cc
|
| index c295bb469d6890e4715e1593fd017dd4bf0e6ded..8569d640e7c0af946e22f4fc8f19c5bb34656e5c 100644
|
| --- a/components/history/core/browser/thumbnail_database.cc
|
| +++ b/components/history/core/browser/thumbnail_database.cc
|
| @@ -352,18 +352,18 @@ void RecoverDatabaseOrRaze(sql::Connection* db, const base::FilePath& db_path) {
|
| return;
|
| }
|
|
|
| - if (!recovery->AutoRecoverTable("favicons", 0, &favicons_rows_recovered)) {
|
| + if (!recovery->AutoRecoverTable("favicons", &favicons_rows_recovered)) {
|
| sql::Recovery::Rollback(std::move(recovery));
|
| RecordRecoveryEvent(RECOVERY_EVENT_FAILED_AUTORECOVER_FAVICONS);
|
| return;
|
| }
|
| - if (!recovery->AutoRecoverTable("favicon_bitmaps", 0,
|
| + if (!recovery->AutoRecoverTable("favicon_bitmaps",
|
| &favicon_bitmaps_rows_recovered)) {
|
| sql::Recovery::Rollback(std::move(recovery));
|
| RecordRecoveryEvent(RECOVERY_EVENT_FAILED_AUTORECOVER_FAVICON_BITMAPS);
|
| return;
|
| }
|
| - if (!recovery->AutoRecoverTable("icon_mapping", 0,
|
| + if (!recovery->AutoRecoverTable("icon_mapping",
|
| &icon_mapping_rows_recovered)) {
|
| sql::Recovery::Rollback(std::move(recovery));
|
| RecordRecoveryEvent(RECOVERY_EVENT_FAILED_AUTORECOVER_ICON_MAPPING);
|
|
|