| Index: chrome/browser/browsing_data/browsing_data_remover.h
|
| ===================================================================
|
| --- chrome/browser/browsing_data/browsing_data_remover.h (revision 152704)
|
| +++ chrome/browser/browsing_data/browsing_data_remover.h (working copy)
|
| @@ -279,6 +279,13 @@
|
| // NotifyAndDeleteIfDone.
|
| void OnClearedServerBoundCerts();
|
|
|
| + // Callback on the DB thread so that we can wait for the form data to be
|
| + // cleared.
|
| + void FormDataDBThreadHop();
|
| +
|
| + // Callback from the above method.
|
| + void OnClearedFormData();
|
| +
|
| // Calculate the begin time for the deletion range specified by |time_period|.
|
| base::Time CalculateBeginDeleteTime(TimePeriod time_period);
|
|
|
| @@ -341,6 +348,7 @@
|
| bool waiting_for_clear_plugin_data_;
|
| bool waiting_for_clear_quota_managed_data_;
|
| bool waiting_for_clear_content_licenses_;
|
| + bool waiting_for_clear_form_;
|
|
|
| // Tracking how many origins need to be deleted, and whether we're finished
|
| // gathering origins.
|
|
|