| Index: chrome/browser/browsing_data_remover.h
|
| ===================================================================
|
| --- chrome/browser/browsing_data_remover.h (revision 92558)
|
| +++ chrome/browser/browsing_data_remover.h (working copy)
|
| @@ -171,6 +171,9 @@
|
| // Callback when Gears data has been deleted. Invokes NotifyAndDeleteIfDone.
|
| void OnClearedGearsData();
|
|
|
| + // Callback when Cookies has been deleted. Invokes NotifyAndDeleteIfDone.
|
| + void OnCookiesDeleted(int num_deleted);
|
| +
|
| // Invoked on the FILE thread to delete old Gears data.
|
| void ClearGearsDataOnFILEThread(const FilePath& profile_dir);
|
|
|
| @@ -181,6 +184,7 @@
|
| bool all_done() {
|
| return registrar_.IsEmpty() && !waiting_for_clear_cache_ &&
|
| !waiting_for_clear_history_ &&
|
| + !waiting_for_clear_cookies_&&
|
| !waiting_for_clear_networking_history_ &&
|
| !waiting_for_clear_databases_ && !waiting_for_clear_appcache_ &&
|
| !waiting_for_clear_lso_data_ && !waiting_for_clear_gears_data_ &&
|
| @@ -233,6 +237,7 @@
|
| bool waiting_for_clear_databases_;
|
| bool waiting_for_clear_history_;
|
| bool waiting_for_clear_networking_history_;
|
| + bool waiting_for_clear_cookies_;
|
| bool waiting_for_clear_cache_;
|
| bool waiting_for_clear_appcache_;
|
| bool waiting_for_clear_lso_data_;
|
|
|