Index: chrome/browser/browsing_data/browsing_data_remover.h |
=================================================================== |
--- chrome/browser/browsing_data/browsing_data_remover.h (revision 193677) |
+++ chrome/browser/browsing_data/browsing_data_remover.h (working copy) |
@@ -244,6 +244,13 @@ |
// Invoked on the IO thread to clear the hostname resolution cache. |
void ClearHostnameResolutionCacheOnIOThread(IOThread* io_thread); |
+ // Callback when the LoggedIn Predictor has been cleared. |
+ // Clears the respective waiting flag and invokes NotifyAndDeleteIfDone. |
+ void OnClearedLoggedInPredictor(); |
+ |
+ // Invoked on the IO thread to clear the LoggedIn Predictor. |
Bernhard Bauer
2013/04/13 06:46:24
This method isn't actually called on the IO thread
tburkard
2013/04/16 21:47:19
Done.
|
+ void ClearLoggedInPredictor(); |
+ |
// Callback when speculative data in the network Predictor has been cleared. |
// Clears the respective waiting flag and invokes NotifyAndDeleteIfDone. |
void OnClearedNetworkPredictor(); |
@@ -402,6 +409,7 @@ |
bool waiting_for_clear_history_; |
bool waiting_for_clear_hostname_resolution_cache_; |
bool waiting_for_clear_local_storage_; |
+ bool waiting_for_clear_logged_in_predictor_; |
bool waiting_for_clear_nacl_cache_; |
bool waiting_for_clear_network_predictor_; |
bool waiting_for_clear_networking_history_; |