diff options
Diffstat (limited to 'chrome/browser/browsing_data_database_helper.h')
-rw-r--r-- | chrome/browser/browsing_data_database_helper.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/browser/browsing_data_database_helper.h b/chrome/browser/browsing_data_database_helper.h index e348b06..a8b5937 100644 --- a/chrome/browser/browsing_data_database_helper.h +++ b/chrome/browser/browsing_data_database_helper.h @@ -24,8 +24,6 @@ class Profile; // A client of this class need to call StartFetching from the UI thread to // initiate the flow, and it'll be notified by the callback in its UI // thread at some later point. -// The client must call CancelNotification() if it's destroyed before the -// callback is notified. class BrowsingDataDatabaseHelper : public base::RefCountedThreadSafe<BrowsingDataDatabaseHelper> { public: @@ -58,11 +56,6 @@ class BrowsingDataDatabaseHelper virtual void StartFetching( const base::Callback<void(const std::list<DatabaseInfo>&)>& callback); - // Cancels the notification callback (i.e., the window that created it no - // longer exists). - // This must be called only in the UI thread. - virtual void CancelNotification(); - // Requests a single database to be deleted in the FILE thread. This must be // called in the UI thread. virtual void DeleteDatabase(const std::string& origin, |