summaryrefslogtreecommitdiffstats
path: root/chrome/browser/renderer_host/database_dispatcher_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/renderer_host/database_dispatcher_host.h')
-rw-r--r--chrome/browser/renderer_host/database_dispatcher_host.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/renderer_host/database_dispatcher_host.h b/chrome/browser/renderer_host/database_dispatcher_host.h
index 95f8d86..e9b3f2b 100644
--- a/chrome/browser/renderer_host/database_dispatcher_host.h
+++ b/chrome/browser/renderer_host/database_dispatcher_host.h
@@ -49,11 +49,13 @@ class DatabaseDispatcherHost
void OnDatabaseClosed(const string16& origin_identifier,
const string16& database_name);
- // DatabaseTracker::Observer callback (file thread)
+ // DatabaseTracker::Observer callbacks (file thread)
virtual void OnDatabaseSizeChanged(const string16& origin_identifier,
const string16& database_name,
int64 database_size,
int64 space_available);
+ virtual void OnDatabaseScheduledForDeletion(const string16& origin_identifier,
+ const string16& database_name);
private:
void AddObserver();
@@ -77,7 +79,7 @@ class DatabaseDispatcherHost
// Database tracker message handlers (file thread)
void DatabaseOpened(const string16& origin_identifier,
- const string16& file_name,
+ const string16& database_name,
const string16& description,
int64 estimated_size);
void DatabaseModified(const string16& origin_identifier,